summary.npmreg: Summarizing mixed multinomial regression model fits

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/summary.npmreg.R

Description

summary and print methods for objects of type npmreg.

Usage

1
2
3
4
## S3 method for class 'npmreg'
summary(object,digits = max(3, getOption("digits") - 3),...)
## S3 method for class 'npmreg'
print(x,digits = max(3, getOption("digits") - 3),...)

Arguments

object

an object of class npmreg.

x

an object of class npmreg.

digits

the minimum number of significant digits to be printed in values.

...

further arguments, which will mostly be ignored.

Details

The function npmlt returns an object of class "npmreg". The function summary (i.e., summary.npmreg) can be used to obtain or print a summary of the results, and the function print (i.e., print.npmreg) to print the results.

Value

Summary or print.

Author(s)

Georgios Papageorgiou gpapageo@gmail.com

See Also

npmlt

Examples

1
2
3
4
5
data(schizo)
attach(schizo)
fit1<-npmlt(y~trt*sqrt(wk),formula.npo=~trt,random=~1,id=id,k=2)
print(fit1)
summary(fit1)

mixcat documentation built on Jan. 11, 2020, 9:37 a.m.