posterior_predict function

Posterior Predictive Distribution

Posterior Predictive Distribution

Draw samples from the posterior predictive distribution.

posterior_predict(object, iter = 1000, progress = TRUE)

Arguments

  • object: An object of class estimate or explore
  • iter: Numeric. Number of samples from the predictive distribution
  • progress: Logical. Should a progress bar be included (defaults to TRUE)

Returns

A 3D array containing the predicted datasets

Note

Currently only implemented for type = "mixed", type = "ordinal", and type = "binary". Note the term mixed is confusing, in that it can be used with only, say, ordinal data. In this case, reestimate the model with type = "mixed"

until all data types are supported.

Examples

Y <- gss fit <- estimate(as.matrix(Y), impute = TRUE, iter = 150, type = "mixed") yrep <- posterior_predict(fit, iter = 100)
  • Maintainer: Philippe Rast
  • License: GPL-2
  • Last published: 2024-12-22