When adding a random slope into a model, it does not appear in the dataTypes slot (easystats/insight#566):
library(BayesFactor)
mtcars$cyl <- factor(mtcars$cyl)
mtcars$gear <- factor(mtcars$gear)
model1 <- lmBF(mpg ~ cyl + gear + cyl:gear, mtcars,
progress = FALSE, whichRandom = c("gear", "cyl:gear"))
model1@numerator[[1]]@dataTypes
#> cyl gear
#> "fixed" "random"
When adding a random slope into a model, it does not appear in the
dataTypesslot (easystats/insight#566):