jlme-model-reexports | R Documentation |
Re-exported functions for interacting with Julia model objects
propertynames(x)
issingular(x)
likelihoodratiotest(x, ...)
x |
Julia model object |
... |
Additional arguments passed to the Julia function |
An appropriate R or Julia 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)
# `likelihoodratiotest()` conducts a likelihood-ratio test between nested models
likelihoodratiotest(
x,
jlmer(r2 ~ 1 + (1 | id), lme4::VerbAgg, family = "binomial")
)
stop_julia()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.