素食主义者抗议使用的相关类型
Type of correlation used by protest in vegan
vegan returns a "Correlation in a symmetric Procrustes rotation" 中的 protest
函数。我的假设是它评估两组连续变量(即坐标)之间的线性关系,因此是 Pearson 相关(而不是 Spearman)。这是正确的,还是更细微的差别?
虽然documentation没有明确说明vegan::protest
是使用皮尔逊相关还是斯皮尔曼相关,但通过一些测试我们可以看到vegan::protest
使用皮尔逊相关
cor(iris[c("Sepal.Length", "Sepal.Width")], method="pearson" ) # gives -0.1176
cor(iris[c("Sepal.Length", "Sepal.Width")], method="spearman" ) # gives -0.1668
library(vegan)
protest(iris[,c("Sepal.Length")], iris[,c("Sepal.Width")]) # gives 0.1176
vegan returns a "Correlation in a symmetric Procrustes rotation" 中的 protest
函数。我的假设是它评估两组连续变量(即坐标)之间的线性关系,因此是 Pearson 相关(而不是 Spearman)。这是正确的,还是更细微的差别?
虽然documentation没有明确说明vegan::protest
是使用皮尔逊相关还是斯皮尔曼相关,但通过一些测试我们可以看到vegan::protest
使用皮尔逊相关
cor(iris[c("Sepal.Length", "Sepal.Width")], method="pearson" ) # gives -0.1176
cor(iris[c("Sepal.Length", "Sepal.Width")], method="spearman" ) # gives -0.1668
library(vegan)
protest(iris[,c("Sepal.Length")], iris[,c("Sepal.Width")]) # gives 0.1176