print.lcc: Print an 'lcc' Object

View source: R/methods.R

print.lccR Documentation

Print an lcc Object

Description

Prints information about the longitudinal concordance correlation represented by an object of class lcc. The returned object has a print method.

Usage

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

Arguments

x

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

digits

a non-null value for digits specifies the minimum number of significant digits to be printed in values. The default, NULL.

...

further arguments passed to {print}.

Value

an object inheriting from class print.lcc.

No return value, called for side effects

Author(s)

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

See Also

lcc, summary.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(fm1)

## End(Not run)


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

Related to print.lcc in lcc...