lcc (version 1.1.4)

print.summary.lcc: 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 summary.lcc
print(x, verbose, digits, ...)

Value

No return value, called for side effects

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.

Author

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

See Also

summary.lcc, lccPlot, lcc

Examples

Run this code
if (FALSE) {
## 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"))
}

Run the code above in your browser using DataLab