-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
estimate_means() : option for prediction interval/include sigma #146
Comments
for means violins do work asshowninthedocs ^^: m <- modelbased::estimate_means(lm(mpg ~ am, data = dplyr::mutate(mtcars, am = as.factor(am))))
#> We selected `at = c("am")`.
plot(m, show_data = c("violin", "boxplot", "jitter")) plot(m, show_data = c("violin", "jitter"),
violin = list(aes = list(fill = "am"))) Created on 2021-09-09 by the reprex package (v2.0.1) We don't support half violins though, but it can easily be added by adding its support to Then about prediction intervals, if |
Didn't we write a whole function of getting prediction intervals? |
yes for estimate_predicted that works, but estimate_means relies on emmeans |
The solution here might be to resolve #145 |
There is a way to do this in emmeans, I think |
I'd like to be able to make this plot, visualizing a discrete predictor, with estimated group means and prediction intervals. I'd also like to include densities.
Created on 2021-09-08 by the reprex package (v2.0.1)
To accomplish this, we would need two changes:
The text was updated successfully, but these errors were encountered: