summary.logis_re {pprof} | R Documentation |
Result Summaries of Covariate Estimates from a fitted logis_re
object
Description
Provide the summary statistics for the covariate estimates for a random effect logistic model.
Usage
## S3 method for class 'logis_re'
summary(object, parm, level = 0.95, null = 0, ...)
Arguments
object |
a model fitted from |
parm |
specifies a subset of covariates for which the result summaries should be output. By default, all covariates are included. |
level |
the confidence level during the hypothesis test, meaning a significance level of |
null |
a number defining the null hypothesis for the covariate estimates. The default value is |
... |
additional arguments that can be passed to the function. |
Value
A data frame containing summary statistics for covariate estimates, with the following columns:
Estimate |
the estimates of covariate coefficients. |
Std.Error |
the standard error of the estimate. |
Stat |
the test statistic. |
p value |
the p-value for the hypothesis test. |
CI.upper |
the lower bound of the confidence interval. |
CI.lower |
the upper bound of the confidence interval. |
Examples
data(ExampleDataBinary)
outcome <- ExampleDataBinary$Y
covar <- ExampleDataBinary$Z
ProvID <- ExampleDataBinary$ProvID
fit_re <- logis_re(Y = outcome, Z = covar, ProvID = ProvID)
summary(fit_re)