print.summary.clme: S3 method to print a summary for objects of class 'clme'

Description Usage Arguments Value Note See Also Examples

View source: R/summary_clme.r

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

1
2
## S3 method for class 'summary.clme'
print(x, alpha = 0.05, digits = 4, ...)

Arguments

x

an object of class clme.

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

CLME-package clme

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## 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)

jelsema/CLME documentation built on June 13, 2020, 10:24 a.m.