Learn R Programming

nlist (version 0.4.0)

complete_terms.mcmc: Complete Terms

Description

Adds any absent elements to an mcmc object.

Usage

# S3 method for mcmc
complete_terms(x, silent = FALSE, ...)

Value

The repaired and complete mcmc object.

Arguments

x

An mcmc object.

silent

A flag specifying whether to suppress warning messages.

...

Unused.

Details

The terms are repaired before being completed. Missing or invalid or inconsistent terms are dropped with a warning.

Examples

Run this code
mcmc <- as_mcmc(nlist(beta = matrix(1:4, nrow = 2)))
mcmc <- mcmc[, -4, drop = FALSE]
complete_terms(mcmc)

Run the code above in your browser using DataLab