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

Description Usage Arguments Value Examples

View source: R/mcse_multi.R

Description

Check if the class of the object is mcmcse

Usage

1

Arguments

x

The object that is checked to belong to the class mcmcse

Value

Boolean variable indicating if the input belongs to the class mcmcse

Examples

1
2
3
4
5
6
7
## 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))

mcmcse documentation built on Sept. 9, 2021, 9:06 a.m.