plt.figure()
mu = 0
variance = 1
sigma = math.sqrt(variance)
x = np.linspace(0, 2, 100)
plt.plot(x,mlab.normpdf(x, mu, sigma))
plt.show()
movieRates.plot.hist(stacked=True)
This is what I am trying out but it does not work it gives me a figure 1 and a figure 2. I tried to find an answer but I could not really get anything out of the other examples since they were different from mine. What I am trying to achieve is to show that the movieRates have a normal distribution. That is why I'd like to join those figures together. But I had no luck untill now.