print.summary.lcc {lcc} | R 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
|
verbose |
an optional logical value used to control the amount
of printed output when |
digits |
a non-null value for |
... |
further arguments passed to |
Value
No return value, called for side effects
Author(s)
Thiago de Paula Oliveira, thiago.paula.oliveira@alumni.usp.br
See Also
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)