weights.Wald_lmm | R Documentation |
Extract weights used to pool estimates.
## S3 method for class 'Wald_lmm'
weights(object, method, ...)
object |
a |
method |
[character] method for combining the estimates, one of |
... |
Not used. For compatibility with the generic method. |
a numeric vector whose elements sum to 1.
set.seed(10)
dL <- sampleRem(250, n.times = 3, format = "long")
e.mlmm <- mlmm(Y~X1+X2+X6, repetition = ~visit|id, data = dL,
by = "X4", effects = "X1=0", structure = "CS")
weights(e.mlmm, method = "average")
weights(e.mlmm, method = "pool.fixse")
weights(e.mlmm, method = "pool.se")
weights(e.mlmm, method = "pool.gls")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.