lcc (version 1.1.0)

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, ...)

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.

See Also

summary.lcc, lccPlot, lcc

Examples

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

Run the code above in your browser using DataCamp Workspace