Closed
Description
Jacob, thanks for this great package.
Using effect_plot from the jtools-package, I am not able to modify the interval. If I change "int.type" to "prediction" it still plots the confidence, if I change "int.width" to "0.99" it still plots 0.95.
With your example:
data(mpg)
fit <- lm(cty ~ displ + year + cyl + class + fl, data = mpg[mpg$fl != "c",])
effect_plot(fit, pred = displ, interval = TRUE, int.type=c("confidence"), int.width=0.99,
plot.points = TRUE)
Marco