I am new to the Gaussian Distribution.
But a little strange here.
Is there any idea what kind of occurrence could cause an odd bin between -1 and -0.5 to occur?
Here is my code(But I am not sure whether it help or not)
mu_0 = 0.178950369
srd_0 = 0.455387161
## aa is a list of float value
aa_list = np.array(aa)
data = aa_list * srd_0 + mu_0
data = data.reshape(-1, 1)
figure(num=None, figsize=(12,8), dpi=400, facecolor='w', edgecolor='k')
hx, hy, _ = plt.hist(data, bins=50, density=1,color="blue")
plt.ylim(0.0,1.5)
plt.title('Gaussian mixture example 01')
plt.grid()
plt.xlim(mu_0-4*srd_0,mu_0+4*srd_0)