Learn R Programming

agricolae (version 1.2-6)

correl: Correlation Coefficient

Description

An exact correlation for ties or without ties. Methods of Kendall, Spearman and Pearson.

Usage

correl(x, y, method = "pearson",alternative="two.sided")

Arguments

x

Vector

y

Vector

method

"pearson", "kendall", "spearman"

alternative

"two.sided", "less", "greater"

Value

x

Numeric

y

Numeric

...

References

Numerical Recipes in C. Second Edition.

See Also

correlation

Examples

Run this code
# NOT RUN {
library(agricolae)
data(soil)
with(soil,correl(pH,clay,method="kendall"))
with(soil,correl(pH,clay,method="spearman"))
with(soil,correl(pH,clay,method="pearson"))
# }

Run the code above in your browser using DataLab