You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using interact_plot to create interaction plots and want to change the size of the confidence interval. However, int.width is not changing the width of the confidence intervals. The images below show what is happening.
Looking below, we can see how the graph looks with int.width = 0.95
In the next image, we can see when I set the int.width = 0.4
In addition, here is the code used to create the graphs in the images.
# create the model objectmodel<- lm(mpg~cyl*hp, data=mtcars)
# create the interaction plot used in the first image, 95% confidence interval
interact_plot(model, pred=cyl, modx=hp, interval=TRUE, int.width=0.95)
# create the interaction plot used in the second image, 40% confidence interval
interact_plot(model, pred=cyl, modx=hp, interval=TRUE, int.width=0.4)
The text was updated successfully, but these errors were encountered:
I am using interact_plot to create interaction plots and want to change the size of the confidence interval. However, int.width is not changing the width of the confidence intervals. The images below show what is happening.
Looking below, we can see how the graph looks with int.width = 0.95
In the next image, we can see when I set the int.width = 0.4
In addition, here is the code used to create the graphs in the images.
The text was updated successfully, but these errors were encountered: