Learn R Programming

mixor (version 1.0.4)

summary.mixor: Summarize Mixor Model Fit

Description

summary method for class mixor.

Usage

# S3 method for mixor
summary(object, digits=max(3, getOption("digits") - 2), 
    signif.stars=TRUE, dig.tst = max(1, min(5, digits - 1)), ...)

Arguments

object

an object of class mixor.

digits

minimum number of significant digits to be used for most numbers.

signif.stars

logical; if TRUE, P-values are additionally encoded visually as "significance stars" in order to help scanning of long coefficient tables.

dig.tst

minimum number of significant digits for the test statistics.

other arguments.

Value

Prints the following items extracted from the fitted mixor object: the call to mixor (model formula), mode Deviance, Log-likelihood, RIDGEMAX, AIC, SBC, and model paramter estimates along with their SE, Z, and p-value.

See Also

See Also mixor, print.mixor, coef.mixor

Examples

Run this code
# NOT RUN {
library("mixor")
data("schizophrenia")
### Random intercept
SCHIZO1.fit<-mixor(imps79o ~ TxDrug + SqrtWeek + TxSWeek, data=schizophrenia, 
     id=id, link="probit")
summary(SCHIZO1.fit)
# }

Run the code above in your browser using DataLab