Gradient + interval plot for model predictions

mc_obs_gradientinterval(...)

mc_model_gradientinterval(..., n_sample = NA, group_sample = "collapse")

Arguments

...

Augments passed to ggdist::stat_gradientinterval.

n_sample

The number of sample of draws to show in gradient + interval plot. Default NA. If n_sample is NA, then mc_model_gradientinterval() will use all draws from posterior distribution.

group_sample

How to show draws? Default "collapse". If group_sample is "collapse", then all draws are collapsed together to show in one gradient + interval plot; if group_sample is "group", then each draw is shown in an individual gradient + interval plot; if group_sample is "hops", then mc_model_gradientinterval() will use animation to show each draw in one frame; if group_sample is an function, then all draws are aggregated by group_sample(). See examples for more details.

Examples

library(ggplot2)

mcplot(mpg_model) +
  mc_model_gradientinterval(n_sample = 50) +
  mc_obs_gradientinterval() +
  mc_gglayer(coord_flip())


mcplot(mpg_model) +
  mc_model_gradientinterval(n_sample = 50) +
  mc_obs_gradientinterval() +
  mc_condition_on(x = vars(vs))


mcplot(mpg_model) +
  mc_model_gradientinterval(n_sample = 50, group_sample = mean) +
  mc_obs_gradientinterval() +
  mc_condition_on(x = vars(vs))