Learn R Programming

CLME (version 2.0-12)

print.summary.clme: 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 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.

See Also

CLME-package clme

Examples

Run this code
# 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 )
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab