Re: [Matplotlib-users] Plot Scatter plot with hist() method output

2013-08-19 Thread Benjamin Root
Perhaps hexbin() is what you are looking for? Cheers! Ben Root On Aug 19, 2013 7:29 PM, "dilpreet singh" wrote: > Hi > > i want to plot a scatter plot similar to the one attached with email . I > can plot a histogram but the hist method can't plot a scatter plot . Is > there a way to use the ou

Re: [Matplotlib-users] Plot Scatter plot with hist() method output

2013-08-19 Thread Ryan Nelson
Dilpreet, Fortunately, you have a couple of options here. First of all, when you call the plt.hist function, it actually returns three useful sets of data: the frequencies, bin edges, and the bar patches. The first two are probably what you want. You can grab those for later use in your code by do