print.summary.clme {CLME} | R Documentation |
S3 method to print a summary for objects of class clme
Description
Summarizes the output of objects of class clme
, such as those produced by clme
. Prints a tabulated display of global and individual tests, as well as parameter estimates.
Usage
## S3 method for class 'summary.clme'
print(x, alpha = 0.05, digits = 4, ...)
Arguments
x |
an object of class |
alpha |
level of significance. |
digits |
number of decimal digits to print. |
... |
additional arguments passed to other functions. |
Value
NULL
, just prints results to the console.
Note
The individual tests are performed on the specified order. If no specific order was specified, then the individual tests are performed on the estimated order.
See Also
Examples
## Not run:
set.seed( 42 )
data( rat.blood )
cons <- list(order = "simple", decreasing = FALSE, node = 1 )
clme.out <- clme(mcv ~ time + temp + sex + (1|id), data = rat.blood ,
constraints = cons, seed = 42, nsim = 10)
summary( clme.out )
## End(Not run)
[Package CLME version 2.0-12 Index]