View source: R/confint.linear_re.R
confint.linear_re | R Documentation |
linear_re
objectProvide confidence intervals for provider effects or standardized measures from a random effect linear model.
## S3 method for class 'linear_re'
confint(
object,
parm,
level = 0.95,
option = "SM",
stdz = "indirect",
alternative = "two.sided",
...
)
object |
a model fitted from |
parm |
specify a subset of providers for which confidence intervals are given.
By default, all providers are included. The class of |
level |
the confidence level. The default value is 0.95. |
option |
a character string specifying whether the confidence intervals should be provided for provider effects or standardized measures:
|
stdz |
a character string or a vector specifying the standardization method
if |
alternative |
a character string specifying the alternative hypothesis, must be one of
|
... |
additional arguments that can be passed to the function. |
A list of data frames containing the confidence intervals based on the values of option
and stdz
.
CI.alpha |
Confidence intervals for provider effects if |
CI.indirect |
Confidence intervals for indirect standardized differences if |
CI.direct |
Confidence intervals for direct standardized differences if |
data(ExampleDataLinear)
outcome <- ExampleDataLinear$Y
ID <- ExampleDataLinear$ID
covar <- ExampleDataLinear$Z
fit_re <- linear_re(Y = outcome, Z = covar, ID = ID)
confint(fit_re)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.