pp_check.walker_fit | R Documentation |
Plots sample quantiles from posterior predictive sample.
## S3 method for class 'walker_fit'
pp_check(object, ...)
object |
An output from |
... |
Further parameters to |
For other types of posterior predictive checks for example with bayesplot
,
you can extract the variable yrep
from the output, see examples.
## Not run:
# Extracting the yrep variable for general use:
# extract yrep
y_rep <- extract(object$stanfit, pars = "y_rep", permuted = TRUE)$y_rep
# For non-gaussian model:
weights <- extract(object$stanfit,
pars = "weights", permuted = TRUE)$weights
y_rep <- y_rep[sample(1:nrow(y_rep),
size = nrow(y_rep), replace = TRUE, prob = weights), , drop = FALSE]
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.