标签: python matplotlib
我使用以下代码从分布中创建了随机抽样结果的直方图:
plt.hist(Z, normed = True, bins = 30)
我需要用标准法线曲线覆盖该图。如何在Python中实现?