mcp icon indicating copy to clipboard operation
mcp copied to clipboard

Random effects in RHS

Open lindeloev opened this issue 5 years ago • 4 comments

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))

lindeloev avatar Oct 09 '19 09:10 lindeloev

Random change points now supported in a7dfbb4dfe2c44b728ce9be2f98e56dc52f41e83. Saving random slope and intercept for v0.2

lindeloev avatar Oct 24 '19 23:10 lindeloev

Hi, is there a timeline for the implementation of random slopes and intercepts?

luc-w avatar May 13 '20 08:05 luc-w

@luc-w I'm currently working on consolidating the current features so it may be ½ year in the future.

lindeloev avatar May 13 '20 08:05 lindeloev

Great, good to know :)

luc-w avatar May 13 '20 09:05 luc-w