| correlationTest | R Documentation |
Tests if two series are correlated.
correlationTest(x, y, method = c("pearson", "kendall", "spearman"),
title = NULL, description = NULL)
pearsonTest(x, y, title = NULL, description = NULL)
kendallTest(x, y, title = NULL, description = NULL)
spearmanTest(x, y, title = NULL, description = NULL)
x, y |
numeric vectors of data values. |
method |
a character string naming which test should be applied. |
title |
an optional title string, if not specified the input's data name is deparsed. |
description |
optional description string, or a vector of character strings. |
These functions test for association/correlation between paired samples based on the Pearson's product moment correlation coefficient (a.k.a. sample correlation), Kendall's tau, and Spearman's rho coefficients.
pearsonTest, kendallTest, and spearmanTest are
wrappers of base R's cor.test with simplified
interface. They provide 'exact' and approximate p-values for all
three alternatives (two-sided, less, and greater), as well as 95%
confidence intervals. This is particularly convenient in interactive
use.
Instead of calling the individual functions, one can use
correlationTest and specify the required test with argument
method.
an object from class fHTEST
Conover, W. J. (1971); Practical nonparametric statistics, New York: John Wiley & Sons.
Lehmann E.L. (1986); Testing Statistical Hypotheses, John Wiley and Sons, New York.
locationTest,
scaleTest,
varianceTest
x <- rnorm(50)
y <- rnorm(50)
correlationTest(x, y, "pearson")
correlationTest(x, y, "kendall")
spearmanTest(x, y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.