Methods for summarizing the output of sns.run
, and for printing the summary.
# S3 method for sns
summary(object, quantiles = c(0.025, 0.5, 0.975)
, pval.ref = 0.0, nburnin = max(nrow(object)/2, attr(object, "nnr"))
, end = nrow(object), thin = 1, ess.method = c("coda", "ise"), ...)
# S3 method for summary.sns
print(x, ...)
summary.sns
returns a list with these elements:
Dimensionality of state space.
Number of NR (Newton-Raphson) iterations performed at the beginning.
Number of burn-in iterations. These are discarded before calculating sample statistics.
Last iteration to use for calculating sample statistics.
One out of every thin
iterations within the specified range is used for calculating sample statistics.
Total iterations, including NR and MCMC modes.
Number of samples within specified range (before applying thinning).
Number of samples used for calculating sample statistics (after applying thinning).
Number of subsets used in state space partitioning. If no partitioning is done, the value is 1
.
Acceptance rate for the MH transition proposals, calculated over nsmp
iterations.
Mean relative deviation from quadratic approximation, defined as difference between actual log-density change and the value predicted from quadratic fit at density maximum, divided by the actual change. The location of density maximum is assumed to be the value at the end of the last NR iteration. Therefore, for this measure to be accurate, users must ensure nnr
is sufficiently large to allow for convegrence of the optimization phase.
Same as input.
Same as input.
A list with elements mean
, sd
, ess
, quantiles
, pval
representing sample-based mean, standard deviation, effective size, quantiles and sample-based p-values, based on specified range and using thinning (if specified).
An object of class "sns", typically the output of sns.run
.
Values for which sample-based quantiles are calculated.
Reference value for state space variables, used for calculating sample-based p-values.
Number of initial iterations to discard before calculating the sample statistics. A warning is issued if this number is smaller than the initial iterations run in NR mode.
Last iteration to use for calculating sample statistics. Defaults to last iteration.
One out of thin
samples are kept for calculating sample statistics. Default is 1
, using all samples within specified range.
Method used for calculating effective sample size. Default is to call effectiveSize
from package coda
.
An object of class "summary.sns", typically the output of summary.sns
.
Arguments passed to/from other functions.
Alireza S. Mahani, Asad Hasan, Marshall Jiang, Mansour T.A. Sharabiani
Mahani A.S., Hasan A., Jiang M. & Sharabiani M.T.A. (2016). Stochastic Newton Sampler: The R Package sns. Journal of Statistical Software, Code Snippets, 74(2), 1-33. doi:10.18637/jss.v074.c02
sns.run