如何对 python 中的两个 np.array 执行双样本不等大小的 t 检验?

How to perform two-sample unequal sized t-test for two np.array in python?

我有两个不同大小的 numpy 数组,我想 运行 直接在 python 中进行 t 检验以查看 p 值。

您可以使用 Scipy 库,您可以使用 'pip install scipy'

安装它
from scipy import stats
print(stats.ttest_ind(arr1, arr2))

它 returns 计算的 t 统计量和双尾 p 值的元组

Reference Documentation