c.bnecfit {bayesnec} | R Documentation |
Concatenate multiple bnecfit
objects into one single
bayesmanecfit
object containing Bayesian model averaging
statistics.
Description
Concatenate multiple bnecfit
objects into one single
bayesmanecfit
object containing Bayesian model averaging
statistics.
Usage
## S3 method for class 'bnecfit'
c(x, ...)
Arguments
x |
An object of class |
... |
Additional objects of class |
Value
An object of class bayesmanecfit
.
Examples
## Not run:
library(bayesnec)
nec4param <- pull_out(manec_example, model = "nec4param")
ecx4param <- pull_out(manec_example, model = "ecx4param")
# Go from two bayesnecfit objects to a bayesmanecfit object.
# In this example case it is redundant because it recovers the original
# `manec_example`.
c(nec4param, ecx4param)
# Add a bayesnecfit object to an existing bayesmanecfit object
nechorme4 <- nec_data |>
dplyr::mutate(y = qlogis(y)) |>
(\(.)bnec(formula = y ~ crf(x, model = "nechorme4"),
data = ., iter = 200, warmup = 150, chains = 2,
stan_model_args = list(save_dso = FALSE)))()
c(nechorme4, manec_example)
## End(Not run)
[Package bayesnec version 2.1.2.0 Index]