Closed kyleGrealis closed 1 month ago
Hi @kyleGrealis, is it possible that you haven't loaded multilevelmod in that example?
library(parsnip)
show_engines('logistic_reg')
#> # A tibble: 7 × 2
#> engine mode
#> <chr> <chr>
#> 1 glm classification
#> 2 glmnet classification
#> 3 LiblineaR classification
#> 4 spark classification
#> 5 keras classification
#> 6 stan classification
#> 7 brulee classification
library(multilevelmod)
show_engines('logistic_reg')
#> # A tibble: 10 × 2
#> engine mode
#> <chr> <chr>
#> 1 glm classification
#> 2 glmnet classification
#> 3 LiblineaR classification
#> 4 spark classification
#> 5 keras classification
#> 6 stan classification
#> 7 brulee classification
#> 8 gee classification
#> 9 glmer classification
#> 10 stan_glmer classification
Created on 2024-09-23 with reprex v2.1.0
🥴 yup! 100% the case. thank you for reminding me of using the basics. sheesh! lol
No worries! Glad it was easy to solve!
I was hoping to implement
glmer
into a project workflow where we're comparing multiple models. I believe our data would best be applied to a mixed effects model, but was disappointed (and confused) when checking the error message output against the table listed on themultilevelmod
site. I see thatlogistic_reg
using theglmer
engine should be available for classification tasks...But my error message states otherwise:
Can someone be so kind as to clarify for me?
Thank you so much and I appreciate the hard work of this team!
Kyle