我有一个随机整数数组,已经为它们计算了标准偏差mean
和std
。接下来,我在此正态分布(均值,标准差)内有一个随机数数组。
我现在想使用matplotlib绘制正态分布数组的散点图。你能帮忙吗?
码:
random_array_a = np.random.randint(2,15,size=75) #random array from [2,15)
mean = np.mean(random_array_a)
std = np.std(random_array_a)
sample_norm_distrib = np.random.normal(mean,std,75)
散点图需要x和y轴...但是应该是什么?
最佳答案
我认为您可能想要的是正态分布的直方图:
import matplotlib.pyplot as plt
%matplotlib inline
plt.hist(sample_norm_distrib)
关于python - 初学者问题:具有正态分布的Python散点图不作图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53029208/