print.summary.lcc: Print the Summary of an 'lcc' Object

View source: R/methods.R

print.summary.lccR Documentation

Print the Summary of an lcc Object

Description

Information summarizing the fitted longitudinal concordance correlation is printed. This includes the AIC, BIC, and log-likelihood at convergence. If type = "lcc", prints the fitted values while type = "model" prints the fixed effects estimates and their standard errors, standard deviations, correlations for the random effects, within-group correlation, and variance function parameters.

Usage

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

Arguments

x

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

verbose

an optional logical value used to control the amount of printed output when type = "model". Defaults to FALSE

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

No return 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(summary(fm1, type="model"))

## End(Not run)


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

Related to print.summary.lcc in lcc...