summary.npmreg {mixcat} | R Documentation |
summary
and print
methods for objects of type npmreg
.
## 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),...)
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. |
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.
Summary or print.
Georgios Papageorgiou gpapageo@gmail.com
data(schizo)
attach(schizo)
fit1<-npmlt(y~trt*sqrt(wk),formula.npo=~trt,random=~1,id=id,k=2)
print(fit1)
summary(fit1)