quantile.angmcmc {BAMBI} | R Documentation |
Quantile estimates for parameters from an angmcmc object
Description
Quantile estimates for parameters from an angmcmc object
Usage
## S3 method for class 'angmcmc'
quantile(x, par.name, comp.label, chain.no, probs = seq(0, 1, 0.25), ...)
Arguments
x |
angmcmc object |
par.name |
vector of names of parameters for which point estimates are to be computed. If |
comp.label |
vector of component labels (positive integers, e.g., |
chain.no |
vector of chain numbers whose samples are to be be used. in the estimation. By default all chains are used. |
probs |
numeric vector of probabilities with values in
|
... |
further arguments to pass to |
Value
Returns a three dimensional array of quantiles, or a matrix (vector) of quantiles
if one (or two) among par.name
, comp.label
, probs
has length 1.
Examples
# first fit a vmsin mixture model
# illustration only - more iterations needed for convergence
fit.vmsin.20 <- fit_vmsinmix(tim8, ncomp = 3, n.iter = 20,
n.chains = 1)
# 0.025th quantiles
(quant_025 <- quantile(fit.vmsin.20, prob = 0.025))
# 0.975th quantiles
(quant_975 <- quantile(fit.vmsin.20, prob = 0.975))
# default quantiles
(quant_def <- quantile(fit.vmsin.20))