Hello, everyone. I have a set of data from dose-response effect (without saturation point), but I don’t know how to fit it with appropriate family.
I have values that follows a log distribution, however, there are some negative values, and the Log family doesn’t work.
I’m trying to use 2 set of priors since from data the curves from one group are diff (one group starts reacting at the lowest concentration, while the other only at the highest). I have different bees and whitin each bee I record different glomeruli
fit3 <- brm(Signal ~ mo(OConc_ord) * Group + (1|Bee:GloTag),
data = df,
prior = c(prior_nurses,
prior_foragers),
chains = 4,
iter = 2000,
warmup = 1000,
cores = 4,
seed = 123,
sample_prior = TRUE,
family = gaussian(log))
code_to_run_your_model(if_applicable)
Thanks!!!
:D