Learn R Programming

mcmcse (version 1.5-1)

is.mcmcse: Check if the class of the object is mcmcse

Description

Check if the class of the object is mcmcse

Usage

is.mcmcse(x)

Value

Boolean variable indicating if the input belongs to the class mcmcse

Arguments

x

The object that is checked to belong to the class mcmcse

Examples

Run this code

## Bivariate Normal with mean (mu1, mu2) and covariance sigma
n <- 1e3
mu <- c(2, 50)
sigma <- matrix(c(1, 0.5, 0.5, 1), nrow = 2)

out <- BVN_Gibbs(n, mu, sigma)
is.mcmcse(mcse.multi(out))

Run the code above in your browser using DataLab