print.anova.lcc: Print the Anova of an 'lcc' Object

View source: R/methods.R

print.anova.lccR Documentation

Print the Anova of an lcc Object

Description

Method print for the anova.lcc.

Usage

## S3 method for class 'anova.lcc'
print(x, verbose, ...)

Arguments

x

an object inheriting from class anova.lcc, representing a fitted longitudinal concordance correlation function.

verbose

an optional logical value used to control the amount of printed output. If TRUE, the calling sequences for each fitted model object are printed with the rest of the output, being omitted if verbose = FALSE. Defaults to FALSE.

...

further arguments passed to print.

Details

Modified from anova.lme. For more details see methods for nlme.

Value

Return no value, called for side effects

Author(s)

Thiago de Paula Oliveira, thiago.paula.oliveira@alumni.usp.br

See Also

summary.lcc, lccPlot, lcc

Examples


## Not run: 
## Second degree polynomial model with random intercept, slope and
## quadratic term
fm1<-lcc(data = hue, subject = "Fruit", resp = "H_mean",
         method = "Method", time = "Time", qf = 2, qr = 2)
print(anova(fm1))

## End(Not run)


lcc documentation built on Aug. 25, 2022, 5:08 p.m.

Related to print.anova.lcc in lcc...