Nothing
#' @title Extract results of a double constrained correspondence analysis
#' (dc-CA)
#'
#' @description
#' This function works very much like the \code{vegan}
#' \code{\link[vegan]{scores}} function, in particular
#' \code{\link[vegan]{scores.cca}}, with the additional results such as
#' regression coefficients and linear combinations of traits
#' \code{('reg_traits', 'lc_traits')}. All scores from CA obey the so called
#' transition formulas and so do the scores of CCA and dc-CA. The differences
#' are, for CCA, that the linear combinations of environmental variables (the
#' \emph{constrained} site scores) replace the usual (\emph{unconstrained})
#' site scores, and for dc-CA, that the linear combinations of traits (the
#' \emph{constrained} species scores) also replace the usual
#' (\emph{unconstrained}) species scores in the transition formulas.
#'
#' @param x object of class \code{"dcca"}, \emph{i.e.} result of
#' \code{\link{dc_CA}}.
#' @param choices integer vector of which axes to obtain. Default: all dc-CA
#' axes.
#' @param display a character vector, one or more of \code{c("all", "species",
#' "sites", "sp", "wa", "lc", "bp", "cor", "ic", "reg", "tval", "cn",
#' "lc_traits", "reg_traits", "tval_traits", "cor_traits", "ic_traits",
#' "bp_traits", "cn_traits")}. The most items are as in
#' \code{\link[vegan]{scores.cca}}, except \code{"cor"} and \code{"ic"}, for
#' inter-set and intra-set correlations, respectively, and \code{"tval"} for
#' the (over-optimistic) t-values of the regression coefficients. The remaining
#' scores are analogous scores for species and traits.
#' @param which_cor character or list of trait and environmental variables
#' names (in this order) in the data frames for which inter-set correlations
#' must calculated. Default: a character ("in_model") for all traits and
#' variables in the model, including collinear variables and levels.
#' @param scaling numeric (1,2 or 3) or character \code{"sites", "species" or
#' "symmetric"}. Default: "symmetric". Either site- (1) or species- (2) related
#' scores are scaled by eigenvalues, and the other set of scores have
#' unit weighted mean square or with 3 both are scaled symmetrically
#' to weighted mean squares equal to the square root of eigenvalues. Negative
#' values are treated as the corresponding positive ones by \code{abs(scaling)}.
#' @param normed logical (default \code{TRUE}) giving standardized regression
#' coefficients and biplot scores. When \code{FALSE}, (regular)
#' regression coefficients and (unstandardized) biplot scores.
#' @param tidy Return scores that are compatible with \code{ggplot2}: all
#' scores are in a single data.frame, score type is identified by factor
#' variable \code{score}, the names by variable \code{label}, and species
#' weights (in \code{\link{dc_CA}} are in variable \code{weight}. See
#' \code{\link[vegan]{scores.cca}}.
#' @param ... Other arguments passed to the function (currently ignored).
#'
#' @details
#' The function is modeled after \code{\link[vegan]{scores.cca}}.
#'
#' The t-ratios are taken from a multiple regression of the unconstrained
#' species (or site) scores on to the traits (or environmental variables).
#'
#' An example of \code{which_cor} is: \code{which_cor = list(traits = "SLA",
#' env = c("acidity", "humidity"))}.
#'
#' @returns A data frame if \code{tidy = TRUE}. Otherwise, a matrix if a single
#' item is asked for and a named list of matrices if more than one item is
#' asked for. The following names can be included:
#' \code{c("sites", "constraints_sites", "centroids", "regression", "t_values",
#' "correlation", "intra_set_correlation", "biplot", "species",
#' "constraints_species", "regression_traits", "t_values_traits",
#' "correlation_traits", "intra_set_correlation_traits", "biplot_traits",
#' "centroids_traits")}. Each matrix has an attribute \code{"meaning"}
#' explaining its meaning. With \code{tidy = TRUE}, the resulting data frame
#' has attributes \code{"scaling"} and \code{"meaning"}; the latter has two
#' columns: (1) name of score type and (2) its meaning, usage and
#' interpretation.
#'
#' An example of the meaning of scores in scaling \code{"symmetric"} with
#' \code{display ="all"}:
#' \describe{
#' \item{sites}{ CMWs of the trait axes (constraints species) in scaling
#' 'symmetric' optimal for biplots and, almost so, for inter-site distances.}
#' \item{constraints_sites}{linear combination of the environmental predictors
#' and the covariates (making the ordination axes orthogonal to the
#' covariates) in scaling 'symmetric' optimal for biplots and, almost so,
#' for inter-site distances.}
#' \item{regression}{mean, sd, VIF, standardized regression coefficients and
#' their optimistic t-ratio in scaling 'symmetric'.}
#' \item{t_values}{t-values of the coefficients of the regression of the CWMs
#' of the trait composite on to the environmental variables}
#' \item{correlation}{inter set correlation, correlation between environmental
#' variables and the sites scores (CWMs)}
#' \item{intra_set_correlation}{intra set correlation, correlation between
#' environmental variables and the dc-ca axis (constrained sites scores)}
#' \item{biplot}{biplot scores of environmental variables for display with
#' biplot-traits for fourth-corner correlations in scaling 'symmetric'.}
#' \item{centroids}{environmental category means of the site scores in scaling
#' 'symmetric' optimal for biplots and, almost so, for inter-environmental
#' category distances.}
#' \item{species}{SNC on the environmental axes (constraints sites) in scaling
#' 'symmetric' optimal for biplots and, almost so, for inter-species
#' distances.}
#' \item{constraints_species}{linear combination of the traits and the trait
#' covariates (making the ordination axes orthogonal to the covariates) in
#' scaling 'symmetric' optimal for biplots and, almost so, for inter-species
#' distances.}
#' \item{regression_traits}{mean, sd, VIF, standardized regression
#' coefficients and their optimistic t-ratio in scaling 'symmetric'.}
#' \item{t_values_traits}{t-values of the coefficients of the regression of the
#' SNCs along a dc-CA axis on to the traits}
#' \item{correlation_traits}{inter set correlation, correlation between
#' traits and the species scores (SNCs)}
#' \item{intra_set_correlation_traits}{intra set correlation, correlation
#' between traits and the dc-ca axis (constrained species scores)}
#' \item{biplot_traits}{biplot scores of traits for display with biplot scores
#' for fourth-corner correlation in scaling 'symmetric'.}
#' \item{centroids_traits}{trait category means of the species scores in
#' scaling 'symmetric' optimal for biplots and, almost so, for inter-trait
#' category distances.}
#' }
#'
#' The statements on optimality for distance interpretations are based on the
#' \code{scaling} and the relative magnitude of the dc-CA eigenvalues of the
#' chosen axes.
#'
#' @example demo/dune_dcCA.R
#'
#' @export
scores.dcca <- function(x,
...,
choices = 1:2,
display = "all",
scaling = "sym",
which_cor = "in model",
normed = TRUE,
tidy = FALSE) {
scores_dcca(x, choices = choices, display = display, scaling = scaling,
which_cor = which_cor, normed = normed, tidy = tidy, ...)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.