Usage
## S3 method for class 'bcct':
summary(object, n.burnin = 0, thin = 1, cutoff = 0.75, statistic = "X2",
best = NULL, scale = 0.1, prob.level = 0.95, ...)
## S3 method for class 'sbcct':
print(x, ..., digits = max(3, getOption("digits") - 3))
## S3 method for class 'bict':
summary(object, n.burnin = 0, thin = 1, cutoff = 0.75, statistic = "X2",
best = NULL, scale = 0.1, prob.level = 0.95, ...)
## S3 method for class 'sbict':
print(x, ..., digits = max(3, getOption("digits") - 3))Arguments
object
An object of class "bcct" or "bict".
x
An object of class "sbcct" or "sbict" produced as a result of a call to the functions summary.bcct or
summary.bict, respectively.
n.burnin
An optional argument giving the number of iterations to use as burn-in.
The default value is 0.
thin
An optional argument giving the amount of thinning to use, i.e. the computations are
based on every thin-th value in the MCMC sample. The default value is 1, i.e. no
thinning.
cutoff
An optional argument giving the cutoff posterior probability for displaying posterior
summary statistics of the log-linear parameters. Only those log-linear parameters with
a posterior probability greater than cutoff will be returned as p
statistic
An optional argument giving the discrepancy statistic to use for calculating the Bayesian p-value. It can be one of
c("X2","FreemanTukey","deviance") which correspond to the different statistics:
"X2" = Chi-squared statistic,
best
An optional argument for controlling how the posterior model probabilities are returned
as output. The function will return details on the best models with the highest posterior
model probabilities. The default value is NULL.
scale
An optional argument for controlling how the posterior model probabilities are returned
as output. The function will return details on the models with the posterior model probability
larger than scale times the probability of the posterio
prob.level
An optional argument giving the probability content of the highest posterior density intervals (HPDIs).
The default value is 0.95.
digits
An optional argument controling the rounding of output.
...
Arguments to be passed to and from other methods.