summary.npmreg {mixcat} | R Documentation |
Summarizing mixed multinomial regression model fits
Description
summary
and print
methods for objects of type npmreg
.
Usage
## 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 |
x |
an object of class |
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
Examples
data(schizo)
attach(schizo)
fit1<-npmlt(y~trt*sqrt(wk),formula.npo=~trt,random=~1,id=id,k=2)
print(fit1)
summary(fit1)
[Package mixcat version 1.0-4 Index]