Re: [Matplotlib-users] Corr plot in subplot

2015-03-17 Thread Sudheer Joseph
Hi Paul, I could not succeed in plotting corrplot.Corrplot(df,ax=ax1). infact the plotting procedure is c=corrplot.Corrplot(df,ax=ax1) then issue command c.plot(). So there are 2 steps involved, which may be the complication. I am not very well versed with Matplotlib. Kindly help.

Re: [Matplotlib-users] Corr plot in subplot

2015-03-17 Thread Sudheer Joseph
Hellow Paul, I thought 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:

Re: [Matplotlib-users] Corr plot in subplot

2015-03-17 Thread Paul Hobson
I'm confused is corrplot a matplotlib function? If it's not, there's not much we can do. You should probably just modify it to accept axes as parameters.  — Sent from Mailbox On Tue, Mar 17, 2015 at 1:36 AM, Sudheer Joseph wrote: > Hellow Paul, > I thought I should show an e

[Matplotlib-users] ImportError: No module named six

2015-03-17 Thread garyr
I downloaded version 1.4.3 and installed it (i.e., executed matplotlib-1.4.3.win32-py2.6.exe). Now when I attempt to run a program I get the following: >python rainfallYears.py Traceback (most recent call last): File "rainfallYears.py", line 4, in import matplotlib.pyplot as plt File "C:

Re: [Matplotlib-users] ImportError: No module named six

2015-03-17 Thread Paul Hobson
You need to install the six module, no matter which version of Python you use.  — Sent from Mailbox On Tue, Mar 17, 2015 at 10:31 AM, garyr wrote: > I downloaded version 1.4.3 and installed it (i.e., executed > matplotlib-1.4.3.win32-py2.6.exe). Now when I > attempt to run a program I get th

Re: [Matplotlib-users] ImportError: No module named six

2015-03-17 Thread Benjamin Root
Chances are, there is some sort of mixup in your installs (as evidenced by the failure to go back to the previous version). I would try uninstalling all matplotlib installs, then checking to see if python still sees matplotlib anywhere (by running the script). It *should* say "No module named matpl

Re: [Matplotlib-users] ImportError: No module named six

2015-03-17 Thread garyr
I did as you suggest and got the "No module named matplot lib" message. I installed version 1.4.3 and got the "no module named six" message. I then deleted all the matplotlib files once again and installed version 1.3.1 and now my matplotlib program runs. Is there something else could try? -