mcp
mcp copied to clipboard
Random effects in RHS
Include optional random effects for all parameters. Here is a great guide for JAGS and stan
Or add a varying slope too:
list(y~ 1 + x,
(1|id) ~ 0 + (1|x))
Keep it intercept-only at first with uncorrelated random effects. Think about whether to allow for fixed and random of the same parameter (mean-centering random):
list(y~ 1 + x,
1 + (1|id) ~ 0 + x+ (1|x))
Random change points now supported in a7dfbb4dfe2c44b728ce9be2f98e56dc52f41e83. Saving random slope and intercept for v0.2
Hi, is there a timeline for the implementation of random slopes and intercepts?
@luc-w I'm currently working on consolidating the current features so it may be ½ year in the future.
Great, good to know :)