python 双侧t检验
时间: 2023-10-30 21:07:48 浏览: 134
t 检验
在Python中进行双侧t检验可以使用scipy库的stats模块中的ttest_ind函数。ttest_ind函数用于比较两个独立样本的均值是否存在显著差异。以下是一个示例代码:
```python
from scipy import stats
# 生成两组样本数据
sample1 = [1, 2, 3, 4, 5]
sample2 = [6, 7, 8, 9, 10]
# 进行双侧t检验
t_statistic, p_value = stats.ttest_ind(sample1, sample2)
print("T统计量:", t_statistic)
print("P值:", p_value)
```
在上述代码中,我们生成了两组样本数据sample1和sample2,然后使用ttest_ind函数进行双侧t检验。t_statistic是T统计量,p_value是P值。
阅读全文