vlambda博客
学习文章列表

R语言中进行Spearman等级相关分析

原文链接:http://tecdat.cn/?p=9501

 

目录

数据简单图

绘制结果图

怎么做测试

数据简单图


本文展示了r语言中如何进行Spearman等级相关分析的例子。


Spearman等级相关的例子

 
### --------------------------------------------------------------### Spearman rank correlation, frigatebird example


Data = read.table(textConnection(Input),header=TRUE)

cor.test( ~ Pitch + Volume, data=Data, method = "spearman", continuity = FALSE, conf.level = 0.95)


Spearman's rank correlation rho


S = 1708.382, p-value = 0.0002302
sample estimates:
rho
-0.7630357

 

 

数据简单图

  

plot(Pitch ~ Volume, data=Data, pch=16)

 

绘制结果图

有关此主题的信息,请参见手册

 

怎么做测试

Spearman等级相关的例子

 




 
Spearman's rank correlation rho

S = 1111.908, p-value = 0.1526

rho
-0.3626323


 

 

数据简单图

  

 

R语言中进行Spearman等级相关分析

更多内容,请点击左下角“阅读原文”查看

R语言中进行Spearman等级相关分析

R语言中进行Spearman等级相关分析

R语言中进行Spearman等级相关分析


案例精选、技术干货 第一时间与您分享

长按二维码加关注

更多内容,请点击左下角“阅读原文”查看