View source: R/parametricbootstrap.R
parametricbootstrap | R Documentation |
Parametric bootstrap for Julia mixed effects models
parametricbootstrap(
x,
nsim,
seed,
...,
optsum_overrides = list(ftol_rel = 1e-08)
)
x |
A Julia MixedModel of class |
nsim |
Number of simulations |
seed |
Seed for the random number generator (Random.MersenneTwister) |
... |
Not implemented |
optsum_overrides |
Values to override in the OptSummary. |
MixedModels.parametricboostrap() output as object of class jlmeboot
jlme_setup(restart = TRUE)
jmod <- jlmer(Reaction ~ Days + (Days | Subject), lme4::sleepstudy)
tidy(jmod)
samp <- parametricbootstrap(jmod, nsim = 100L, seed = 42L)
samp
tidy(samp)
stop_julia()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.