因此,让我们来看看?t.test()
我们通过以下方式对数据进行双样本t检验:
t.test(1:10, y = c(7:20))
现在我只对保存p-value
感兴趣
当我输入以下代码时,$p.value
也会被保存。
t.test(1:10, y = c(7:20))[3]
我只希望将p-value
保存(使用$p.value
)作为数字/整数/双精度。很抱歉提出这么简单的问题
答案 0 :(得分:5)
您可以将t值从t检验保存到另一个变量,例如:
pVal <- t.test(1:10, y = c(7:20))$p.value
pVal
将为数字:
> str(pVal)
num 1.86e-05
答案 1 :(得分:0)
test <- t.test(df$column1, df$column2, paired = TRUE)
test$p.value