Learn R Programming

mixor (version 1.0.4)

print.mixor: Printing Mixor Model Fits

Description

print method for class mixor.

Usage

# S3 method for mixor
print(x, digits = max(3L, getOption("digits") - 3L), ...)

Arguments

x

an object of class mixor.

digits

the number of significant digits to use when printing.

further arguments passed to or from other methods.

Value

The function print.mixor prints the model call and coefficients from the mixor object.

See Also

See Also as mixor, summary.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")
print(SCHIZO1.fit)
### Random intercept and slope	
SCHIZO2.fit<-mixor(imps79o ~ TxDrug + SqrtWeek + TxSWeek, data=schizophrenia, 
     id=id, which.random.slope=2, link="probit")
print(SCHIZO2.fit)
# }

Run the code above in your browser using DataLab