update.RoBSA {RoBSA} | R Documentation |
Updates a fitted RoBSA object
Description
update.RoBSA
can be used to
add an additional model to an existing
"RoBSA"
object by specifying the distribution, and either null or alternative priors for each parameter and prior weight of the model,change the prior weights of fitted models by specifying a vector
prior_weights
of the same length as the fitted models,refitting models that failed to converge with updated settings of control parameters,
or changing the convergence criteria and recalculating the ensemble results by specifying new
control
argument and settingrefit_failed == FALSE
.
Usage
## S3 method for class 'RoBSA'
update(
object,
refit_failed = TRUE,
formula = NULL,
priors = NULL,
test_predictors = "",
distribution = NULL,
model_weights = 1,
prior_beta_null = get_default_prior_beta_null(),
prior_beta_alt = get_default_prior_beta_alt(),
prior_factor_null = get_default_prior_factor_null(),
prior_factor_alt = get_default_prior_factor_alt(),
prior_intercept = get_default_prior_intercept(),
prior_aux = get_default_prior_aux(),
chains = NULL,
adapt = NULL,
burnin = NULL,
sample = NULL,
thin = NULL,
autofit = NULL,
parallel = NULL,
autofit_control = NULL,
convergence_checks = NULL,
save = "all",
seed = NULL,
silent = TRUE,
...
)
Arguments
object |
a fitted RoBSA object |
refit_failed |
whether failed models should be refitted. Relevant only
if new priors or |
formula |
formula for the survival model |
priors |
names list of prior distributions for each
predictor. It allows users to specify both the null and alternative
hypothesis prior distributions by assigning a named list
(with |
test_predictors |
vector of predictor names
to be tested with Bayesian model-averaged testing.
Defaults to |
distribution |
a distribution of the new model. |
model_weights |
either a single value specifying prior model weight of a newly specified model using priors argument, or a vector of the same length as already fitted models to update their prior weights. |
prior_beta_null |
default prior distribution for the null hypotheses of continuous predictors |
prior_beta_alt |
default prior distribution for the alternative hypotheses of continuous predictors |
prior_factor_null |
default prior distribution for the null hypotheses of categorical predictors |
prior_factor_alt |
default prior distribution for the alternative hypotheses of categorical predictors |
prior_intercept |
named list containing prior distribution for the intercepts (with names corresponding to the distributions) |
prior_aux |
named list containing prior distribution for the auxiliary parameters (with names corresponding to the distributions) |
chains |
a number of chains of the MCMC algorithm. |
adapt |
a number of adaptation iterations of the MCMC algorithm.
Defaults to |
burnin |
a number of burnin iterations of the MCMC algorithm.
Defaults to |
sample |
a number of sampling iterations of the MCMC algorithm.
Defaults to |
thin |
a thinning of the chains of the MCMC algorithm. Defaults to
|
autofit |
whether the model should be fitted until the convergence
criteria (specified in |
parallel |
whether the individual models should be fitted in parallel.
Defaults to |
autofit_control |
allows to pass autofit control settings with the
|
convergence_checks |
automatic convergence checks to assess the fitted
models, passed with |
save |
whether all models posterior distributions should be kept
after obtaining a model-averaged result. Defaults to |
seed |
a seed to be set before model fitting, marginal likelihood
computation, and posterior mixing for reproducibility of results. Defaults
to |
silent |
whether all print messages regarding the fitting process
should be suppressed. Defaults to |
... |
additional arguments. |
Details
See RoBSA()
for more details.
Value
update.RoBSA
returns an object of class 'RoBSA'.
See Also
RoBSA()
, summary.RoBSA()
, prior()
, check_setup()