Re: [Matplotlib-users] Histogram appearance

2014-12-15 Thread Amit Saha
Hi, On Thu, Dec 4, 2014 at 7:01 AM, Dino Bektešević ljet...@gmail.com wrote: Hello, try doing: import matplotlib.pyplot as plt import random rolls = list() for i in range(1000): rolls.append(random.randint(1,6)) plt.hist(rolls, bins=6) plt.show() Reason why your histogram is

[Matplotlib-users] modification to m.scatter

2014-12-15 Thread Sudheer Joseph
Dear Developers/users, I updated matplot lib to 1.4.2 and below example appears to be not working for m.scatter. May I know what change is implimented ?. m.scatter plots the river discharge in gridded format if the x,y=meshgrid(lon,lat) is used else it do not plot over map.