在R
中,可以简单地通过使用进行两样本单尾 t 检验
> A = c(0.19826790, 1.36836629, 1.37950911, 1.46951540, 1.48197798, 0.07532846)
> B = c(0.6383447, 0.5271385, 1.7721380, 1.7817880)
> t.test(A, B, alternative="greater")
Welch Two Sample t-test
data: A and B
t = -0.4189, df = 6.409, p-value = 0.6555
alternative hypothesis: true difference in means is greater than 0
95 percent confidence interval:
-1.029916 Inf
sample estimates:
mean of x mean of y
0.9954942 1.1798523
在 Python 世界中,scipy
提供了类似的函数ttest_ind,但它只能进行双尾 t 检验。我找到的关于该主题的最接近的信息是这个链接,但它似乎是在讨论在scipy
.
因此,我的问题是,是否有人知道有关如何使用 执行单尾版本测试的任何示例或说明numpy/scipy
?