Hi all,
I’m trying to fit my first brms models and am currently exploring which family would fit my data the best. So far I have tried gaussian, skew_normal and student. My response variable is the number of days it has taken to an individual to flower from the start of an experiment. My model looks like this:
mod <- brm(days_to_flowering ~ Treatment + (Treatment|Accession) + (1|Replicate), data = hpe_greenh, save_pars = save_pars(all = TRUE), family = gaussian(), iter = 4000, warmup = 2000, chain = 4, thin = 2, control = list(adapt_delta = 0.999, max_treedepth = 10), seed = 1)
The raw response variable looks like this:
And here results from the pp_chech: