Customized geom
mc_model_custom.Rd
Customized geom
Arguments
- ...
Augments passed to
geom_plot
.- geom_plot
The geom plot to use.
"geom_plot"
should be a geom function like geoms inggplots
and should be able to havedata
andmapping
augments. See examples for more details.- n_sample
The number of sample of draws to show. Default
NA
. Ifn_sample
isNA
, thenmc_model_custom()
will use all draws from posterior distribution.- draw
How to show draws? Default
"hops"
. Ifdraw
is"collapse"
, then all draws are collapsed together and are shown in one geom; if"draw"
is"group"
, then only one draw is shown in one geom; ifdraw
is"hops"
, thenmc_model_custom()
will use animation to show each draw in one frame; ifdraw
is an function, then all draws are aggregated bydraw()
. See examples for more details.