fitted.symcoca {cocorresp} | R Documentation |
Calculates and extracts the fitted values of a Symmetric Co-Correpsondence analysis model.
## S3 method for class 'symcoca': fitted(object, ...)
object |
an object of class "symcoca" |
... |
arguments to be passed to other methods. |
A list with the following components:
Yhat1 |
the fitted values for the “response” matrix. |
Yhat2 |
the fitted values for the “predictor” matrix. |
nam.dat |
a vector containing the names of the “response” and “predictor” matrices respectively. Used for printing the results. |
This function needs an update and to allow option to restrict fitted values to specified axes, and the names of the returned objects need making more obvious!
Gavin L. Simpson, based on Matlab code by C.J.F. ter Braak and A.P. Schaffers.
Ter Braak, C.J.F and Schaffers, A.P. (2004) Co-Correspondence Analysis: a new ordination method to relate two community compositions. Ecology 85(3), 834–846
The model fitting function coca
## symmetric CoCA data(beetles) ## log transform the bettle data beetles <- log(beetles + 1) data(plants) ## fit the model bp.sym <- coca(beetles ~ ., data = plants, method = "symmetric") bp.sym ## fitted values bp.fit <- fitted(bp.sym) bp.fit