maxCorProj {ccaPP} | R Documentation |
(Robust) maximum correlation via projections through the data points
Description
Compute the maximum correlation between two data sets via projection pursuit based on projections through the data points, with a focus on robust and nonparametric methods.
Usage
maxCorProj(x, y, method = c("spearman", "kendall", "quadrant", "M",
"pearson"), control = list(...), standardize = TRUE,
useL1Median = TRUE, fallback = FALSE, ...)
Arguments
x , y |
each can be a numeric vector, matrix or data frame. |
method |
a character string specifying the correlation functional to
maximize. Possible values are |
control |
a list of additional arguments to be passed to the specified
correlation functional. If supplied, this takes precedence over additional
arguments supplied via the |
standardize |
a logical indicating whether the data should be (robustly) standardized. |
useL1Median |
a logical indicating whether the |
fallback |
logical indicating whether a fallback mode for robust standardization should be used. If a correlation functional other than the Pearson correlation is maximized, the first attempt for standardizing the data is via median and MAD. In the fallback mode, variables whose MADs are zero (e.g., dummy variables) are standardized via mean and standard deviation. Note that if the Pearson correlation is maximized, standardization is always done via mean and standard deviation. |
... |
additional arguments to be passed to the specified correlation functional. |
Details
First the candidate projection directions are defined for each data set
from the respective center through each data point. Then the algorithm
scans all n^2
possible combinations for the maximum correlation,
where n
is the number of observations.
Value
An object of class "maxCor"
with the following components:
cor |
a numeric giving the maximum correlation estimate. |
a |
numeric; the weighting vector for |
b |
numeric; the weighting vector for |
centerX |
a numeric vector giving the center estimates used in
standardization of |
centerY |
a numeric vector giving the center estimates used in
standardization of |
scaleX |
a numeric vector giving the scale estimates used in
standardization of |
scaleY |
a numeric vector giving the scale estimates used in
standardization of |
call |
the matched function call. |
Author(s)
Andreas Alfons
See Also
maxCorGrid
, ccaProj
,
corFunctions
,
Examples
data("diabetes")
x <- diabetes$x
y <- diabetes$y
## Spearman correlation
maxCorProj(x, y, method = "spearman")
maxCorProj(x, y, method = "spearman", consistent = TRUE)
## Pearson correlation
maxCorProj(x, y, method = "pearson")