ught I should show an example plot which shows the idea
> of what I was asking about corrplot. Below link shows it.
> http://matplotlib.org/examples/pylab_examples/multi_image.html
>
> On Tue, 17/3/15, Sudheer Joseph wrote:
> Subject:
:
Subject: Re: [Matplotlib-users] Corr plot in subplot
To: "Paul Hobson" , "Adam Hughes"
Cc: "Matplotlib Users"
Date: Tuesday, 17 March, 2015, 8:31 AM
Hi Paul,
I could not succeed in
plotting corrplot.Corrplot(df,ax=ax1).
infac
.
On Fri, 13/3/15, Adam Hughes wrote:
Subject: Re: [Matplotlib-users] Corr plot in subplot
To: "Paul Hobson"
Cc: "Sudheer Joseph" , "Matplotlib Users"
Date: Friday, 13 March, 2015, 7:06 PM
All the
pandas plo
ax3 = fig.add_subplot(223);corrplot.Corrplot(df_jja,axes=ax3)
TypeError: __init__() got an unexpected keyword argument 'axes'
On Fri, 13/3/15, Adam Hughes wrote:
Subject: Re: [Matplotlib-users] Corr plot in subplot
To: "Paul Hobson"
Thank you Adam,
I did not see your response earlier. It worls.
Thanks
Sudheer
***
On Fri, 13/3/15, Adam Hughes wrote:
Subject: Re: [Matplotlib-users] Corr plot in subplot
To: "Paul H
--
On Fri, 13/3/15, Paul Hobson wrote:
Subject: Re: [Matplotlib-users] Corr plot in subplot
To: "Sudheer Joseph"
Cc: "Matplotlib Users"
Date: Friday, 13 March, 2015, 6:04 PM
What's
the function signature of corrplot.CorrPlot? Hopefully you
can pass an Axes
All the pandas plots that I've used take an axes keyword so try:
c = corrplot.Corrplot(df, ax=ax1)
or
c = corrplot.Corrplot(df, axes=ax1)
Do either of those work?
On Fri, Mar 13, 2015 at 2:04 PM, Paul Hobson wrote:
> What's the function signature of corrplot.CorrPlot? Hopefully you can pass
What's the function signature of corrplot.CorrPlot? Hopefully you can pass
an Axes object to it argument.
-p
On Fri, Mar 13, 2015 at 9:02 AM, Sudheer Joseph
wrote:
> Dear Matplotlib exprets,
> I am trying to place the corrplot in subplot environment. But not able to
> figure out how to do it pro
Dear Matplotlib exprets,
I am trying to place the corrplot in subplot environment. But not able to
figure out how to do it properly. Can any one advice please?
from biokit.viz import corrplot
df = pd.DataFrame(dict(( (k, np.random.random(10)+ord(k)-65) for k in letters)))
df = df.corr()
c = corr