print.summary.lcc {lcc} | R Documentation |
lcc
ObjectInformation 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.
## S3 method for class 'summary.lcc'
print(x, verbose, digits, ...)
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 |
No return value, called for side effects
Thiago de Paula Oliveira, thiago.paula.oliveira@alumni.usp.br
## 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)