lin.cor | R Documentation |
This function computed the linear correlation between two vectors or a correlation matrix for an input matrix.
The following methods to compute linear correlations are implemented in this function:
lin.cor(x, y = NULL, method = "pearson", test.na = FALSE)
x |
a numeric |
y |
a numeric |
method |
the method to compute the linear correlation between |
test.na |
a boolean value indicating whether input data should be checked for |
method = "pearson"
: Pearson's correlation coefficient (centred).
method = "pearson2"
: Pearson's uncentred correlation coefficient.
method = "sq_pearson"
. Squared Pearson's correlation coefficient.
method = "kendall"
: Kendall's correlation coefficient.
method = "spearman"
: Spearman's correlation coefficient.
Further Details:
Pearson's correlation coefficient (centred) :
Hajk-Georg Drost
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.