powered by
logis_re
Provide the summary statistics for the covariate estimates for a random effect logistic model.
# S3 method for logis_re summary(object, parm, level = 0.95, null = 0, ...)
A data frame containing summary statistics for covariate estimates, with the following columns:
the estimates of covariate coefficients.
the standard error of the estimate.
the test statistic.
the p-value for the hypothesis test.
the lower bound of the confidence interval.
the upper bound of the confidence interval.
a model fitted from logis_re.
specifies a subset of covariates for which the result summaries should be output. By default, all covariates are included.
the confidence level during the hypothesis test, meaning a significance level of \(1 - \text{level}\). The default value is 0.95.
a number defining the null hypothesis for the covariate estimates. The default value is 0.
0
additional arguments that can be passed to the function.
data(ExampleDataBinary) outcome <- ExampleDataBinary$Y covar <- ExampleDataBinary$Z ProvID <- ExampleDataBinary$ProvID fit_re <- logis_re(Y = outcome, Z = covar, ProvID = ProvID) summary(fit_re)
Run the code above in your browser using DataLab