print.mixor {mixor}R Documentation

Printing Mixor Model Fits

Description

print method for class mixor.

Usage

## S3 method for class '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.

Author(s)

Kellie J. Archer, Donald Hedeker, Rachel Nordgren, Robert D. Gibbons

See Also

See Also as mixor, summary.mixor, coef.mixor

Examples

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)

[Package mixor version 1.0.4 Index]