Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

standard_error() for merMod with correlated random effects fails #202

Open
strengejacke opened this issue Feb 4, 2020 · 1 comment
Open
Labels
Bug 🐛 Something isn't working Low priority 😴 This issue does not impact package functionality much

Comments

@strengejacke
Copy link
Member

library(lme4)
m <- lmer(Reaction ~ Days + (1 + Days || Subject), data = sleepstudy)
parameters::standard_error(m, effects = "random")
@strengejacke strengejacke added Bug 🐛 Something isn't working Low priority 😴 This issue does not impact package functionality much labels Feb 4, 2020
@strengejacke
Copy link
Member Author

This also fails:

library(lme4)
sleepstudy$random <- rnorm(nrow(sleepstudy))
m <- lmer(Reaction ~ Days + (Days | Subject) + (0+random| Subject), sleepstudy)
parameters::standard_error(m, effects = "random")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug 🐛 Something isn't working Low priority 😴 This issue does not impact package functionality much
Projects
None yet
Development

No branches or pull requests

1 participant