brms_mv_3.Rd
Model of class brmsfit
brms_mv_3
An object of class brmsfit
of length 21.
# NOT RUN { data(epilepsy) set.seed(123) epilepsy$visit <- as.numeric(epilepsy$visit) epilepsy$Base2 <- sample(epilepsy$Base, nrow(epilepsy), replace = TRUE) f1 <- bf(Base ~ zAge + count + (1 |ID| patient)) f2 <- bf(Base2 ~ zAge + Trt + (1 |ID| patient)) brms::brm(f1 + f2 + set_rescor(FALSE), data = epilepsy) # }