jlme-model-helpers {jlme} | R Documentation |
Helpers for interacting with Julia model objects and functions
Description
Helpers for interacting with Julia model objects and functions
Usage
propertynames(x)
issingular(x)
Arguments
x |
Julia model object |
Value
An appropriate R object
Examples
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()
[Package jlme version 0.3.0 Index]