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.
htt
Hi,
On Thu, Dec 4, 2014 at 7:01 AM, Dino Bektešević 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 wei