作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 coin::wilcox_test 进行分析,想知道如何从中获得估计值(位置差异)。
library(coin)
water_transfer <- data.frame(pd = c(0.80, 0.83, 1.89, 1.04, 1.45, 1.38, 1.91, 1.64, 0.73, 1.46,1.15, 0.88, 0.90, 0.74, 1.21),
age = factor(c(rep("At term", 10), rep("12-26 Weeks", 5))))
wt <- wilcox_test(pd ~ age, data = water_transfer, distribution = "exact", conf.int = TRUE)
wt
Exact Wilcoxon Mann-Whitney Rank Sum Test
data: pd by age (12-26 Weeks, At term)
Z = -1.2, p-value = 0.3
alternative hypothesis: true mu is not equal to 0
95 percent confidence interval:
-0.76 0.15
sample estimates:
difference in location
-0.305
如何获取“-0.305”?
最佳答案
刚想通了:
confint(wt)[[2]]
difference in location
-0.305
关于r - 如何从 R 中的 coin::wilcox_test 中获取估计值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31615497/
我是一名优秀的程序员,十分优秀!