Я полагаю, что правильно устанавливаю формулу модели, и я устанавливаю желаемые априоры для фиксированных параметров эффекта:
## define some priors
prior <- c(prior_string("normal(0,10^3)", class = "b"),
prior_string("normal(0,10^3)", class = "b", coef = "eventvisit"),
prior_string("normal(0,10^3)", class = "b", coef = "eventvisit:periodperiod_2"),
prior_string("normal(0,10^3)", class = "b", coef = "eventvisit:periodperiod_3"),
prior_string("normal(0,10^3)", class = "b", coef = "eventvisit:periodperiod_4"),
prior_string("normal(0,10^3)", class = "b", coef = "periodperiod_2"),
prior_string("normal(0,10^3)", class = "b", coef = "periodperiod_3"),
prior_string("normal(0,10^3)", class = "b", coef = "periodperiod_4"))
## fit model
fit1 <- brm(count ~ event + period + event:period + (1|subject) + (0 + event|subject) + (0 + period|subject),
data = data.long, family = poisson(),
prior = prior,
warmup = 1000, iter = 4000, chains = 4,
cores = 7)