Description Usage Arguments Value Author(s) See Also Examples
summary
methods for classes "predcoca"
and
"symcoca"
. These provide a summary of the main results of a
Co-Correspondence Analysis model.
1 2 3 4 5 6 7 |
object |
an object of class |
axes |
the number of CoCA axes to return in the result set. |
display |
one or both of |
scaling |
for objects of class |
... |
arguments to be passed to other methods. |
A list with the some of the following components:
cocaScores |
The site and or species scores for the axes requested. |
call |
The call used to fit the model. |
lambda |
The eigenvalues for the axes requested. Not for
|
namY, namX |
the names of the response and predictor either supplied by the user or derived from the original call. |
loadings |
a list with two components |
varianceExp |
a list with components |
totalVar |
a list with components |
inertia |
a list with components |
scaling |
the scaling used/requested. (Only for symmetric CoCA models.) |
Gavin L. Simpson
The model fitting function coca
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## symmetric CoCA
data(beetles)
data(plants)
## log transform the bettle data
beetles <- log(beetles + 1)
## fit the model
bp.sym <- coca(beetles ~ ., data = plants, method = "symmetric")
summary(bp.sym, axes = 1:4)
## Different scaling
summary(bp.sym, axes = 1:4, scaling = 2)
## Predictive CoCA
bp.pred <- coca(beetles ~ ., data = plants)
summary(bp.pred, axes = 1:2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.