Python 统计思维(第 2 部分)
Justin Bois
Lecturer at the California Institute of Technology


import numpy as np import matplotlib.pyplot as pltmean = np.mean(michelson_speed_of_light) std = np.std(michelson_speed_of_light) samples = np.random.normal(mean, std, size=10000)







Python 统计思维(第 2 部分)