I'm having an issue with creating a histogram using matplotlib. I specify a series of bins, but the plot retus with the bins split up and showing lots of bars. The code I'm using is:
plt.hist(Ri, bins = [-50,-25,0,25,50,75,100,125,150,175,200],rwidth=1)
This then gives me this: Histogram with split up bins
