jlme-model-helpers {jlme} | R Documentation |
Helpers for interacting with Julia model objects and functions
propertynames(x)
issingular(x)
x |
Julia model object |
An appropriate R object
jlme_setup(restart = TRUE)
x <- jlmer(r2 ~ Anger + (1 | id), lme4::VerbAgg, family = "binomial")
# `propertynames()` lists properties accessible via `$`
propertynames(x)
# `issingular()` reports whether model has singular fit
issingular(x)
stop_julia()