📜  python one sample t-test - Python代码示例
📅  最后修改于: 2022-03-11 14:46:09.997000             🧑  作者: Mango
代码示例1
>>> np.random.seed(7654567) # fix seed to get the same result
>>> rvs = stats.norm.rvs(loc=5, scale=10, size=(50,2))