-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
find_formula
struggles with few model objects
#138
Comments
@strengejacke Do you think this bug can be fixed before the next |
I can look at this, there is no hurry for insight to be released, I think. |
related to #66 |
two things:
|
Thanks for fixing this so quickly! |
The 2nd point can be blamed to the lmee-package, because library(lme4)
#> Loading required package: Matrix
data("Orange")
Orange$x1 <- runif(nrow(Orange))
Orange$x2 <- rnorm(nrow(Orange))
set.seed(123)
startvec <- c(Asym = 200, xmid = 725, scal = 350)
m1 <- lme4::nlmer(
circumference ~ SSlogis(age, Asym, xmid, scal) ~ x1 + x2 + Asym | Tree,
Orange,
start = startvec
)
m2 <- lme4::nlmer(
circumference ~ SSlogis(age, Asym, xmid, scal) ~ x1 + x2 + (Asym | Tree),
Orange,
start = startvec
)
lme4::findbars(formula(m1))
#> [[1]]
#> x1 + x2 + Asym | Tree
lme4::findbars(formula(m2))
#> [[1]]
#> Asym | Tree Created on 2019-10-17 by the reprex package (v0.3.0) |
Maybe we can raise an issue on |
Yes, I did already. |
Created on 2019-09-16 by the reprex package (v0.3.0)
Session info
The text was updated successfully, but these errors were encountered: