gpt4 book ai didi

r - R 中的关联度量——Kendall 的 tau-b 和 tau-c

转载 作者:行者123 更新时间:2023-12-03 14:27:58 28 4
gpt4 key购买 nike

是否有任何 R 包用于计算 Kendall 的 tau-b 和 tau-c 及其相关的标准误差?我在 Google 和 Rseek 上的搜索一无所获,但肯定有人在 R 中实现了这些。

最佳答案

今天偶然发现了这个页面,因为我正在寻找 R 中 kendall tau-b 的实现
对于其他寻找相同事物的人:
tau-b 实际上是 stats 包的一部分。

有关详细信息,请参阅此链接:
https://stat.ethz.ch/pipermail/r-help//2012-August/333656.html

我试过了,它有效:
图书馆(统计)

x <- c(1,1,2)
y<-c(1,2,3)
cor.test(x, y, method = "kendall", alternative = "greater")

这是输出:
data:  x and y
z = 1.2247, p-value = 0.1103
alternative hypothesis: true tau is greater than 0
sample estimates:
tau
0.8164966

Warning message:
In cor.test.default(x, y, method = "kendall", alternative = "greater") :
Cannot compute exact p-value with ties

只需忽略警告消息。 tau 实际上是 tau b !!!

关于r - R 中的关联度量——Kendall 的 tau-b 和 tau-c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2557863/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com