Re: [Matplotlib-users] Confusion Matrix

2010-08-08 Thread Simon Friedberger
On 16:00 Fri 06.08.10, Simon Friedberger wrote: It is about the positioning of the rotated labels. The code is here: http://paste.pocoo.org/show/246870/ Note that in line 36 I had already remarked about the hack I used. Now I noticed that if the labels have different lengths rotating them

[Matplotlib-users] Unable to make sequential calls to functions with create matplotlib graphs ... second gets jumbled

2010-08-08 Thread Rob Schneider
Running 0.98.5.3 (would upgrade to 1.0 but having trouble installing it on Mac OS X as it doesn't appear to like the version of Python Apple provides). I have a module where there are two functions which call matplotlib to each create a different graph which both saved to an output PNG file.

[Matplotlib-users] hbars with different labels left and right

2010-08-08 Thread Simon Friedberger
Hi list members! I'm not sure if this is bad style or anything but I'm trying to do something like in this example: http://matplotlib.sourceforge.net/examples/pylab_examples/barchart_demo2.html I would like to haver different labels on both sides. a) I tried using the twinx() command like in

[Matplotlib-users] Win7. Why Don't Matplotlib, ... Show up in Control Panel Add-Remove?

2010-08-08 Thread Wayne Watson
See Subject. I use matplotlib, scipy, numpy and possibly one other module. If I go to the control panel, I only see numpy listed. Why? I use a search and find only numpy and Python itself. How can matplotlib and scipy be uninstalled? -- Wayne Watson (Watson Adventures, Prop.,

Re: [Matplotlib-users] Win7. Why Don't Matplotlib, ... Show up in Control Panel Add-Remove?

2010-08-08 Thread Stephen George
On 9/08/2010 9:19 AM, Wayne Watson wrote: See Subject. I use matplotlib, scipy, numpy and possibly one other module. If I go to the control panel, I only see numpy listed. Why? I use a search and find only numpy and Python itself. How can matplotlib and scipy be uninstalled? In my Win7

Re: [Matplotlib-users] Confusion Matrix

2010-08-08 Thread Friedrich Romstedt
2010/8/8 Simon Friedberger simon+matplot...@a-oben.org: I have found a solution. I'm not sure if it's good or intended but the following works: for label in xax.get_ticklabels():        label.set_rotation(45)        label.set_horizontalalignment('left') This is fully intended. Maybe you

Re: [Matplotlib-users] Win7. Why Don't Matplotlib, ... Show up in Control Panel Add-Remove?

2010-08-08 Thread Wayne Watson
It and scipy work very well. I have 64-bit Win 7, HP Pavilon desktop. A re-examination shows the install files are all exe files, except I think for Python. I'm using 2.5 and need to stay there along with numpy 1.2.0. When you say uninstall, you must mean delete the file under C:\Python. Well,

[Matplotlib-users] Building matplotlib from source with libpng (png.h) installed via fink on Mac OS X

2010-08-08 Thread Markus Baden
Hi, On my Macbook Pro I use Python 2.6 as provided by the Enthought Python Distribution. I ran into some problem with Axes3D so I decided to upgrade to the latest version from source. While trying that I got a similiar error message as discussed in

Re: [Matplotlib-users] Confusion Matrix

2010-08-08 Thread John Hunter
On Sun, Aug 8, 2010 at 8:03 PM, Friedrich Romstedt friedrichromst...@gmail.com wrote: Yes, I agree fully, but have been busy the past few days :-) Friedrich P.S.: You can also try http://matplotlib.sourceforge.net/examples/pylab_examples/alignment_test.html , I believe there was some other

[Matplotlib-users] Sequential calls to functions to draw graphs results in flawed graphs on second call.

2010-08-08 Thread Rob Schneider
Running 0.98.5.3 (would upgrade to 1.0 but having trouble installing it on Mac OS X as it doesn't appear to like the version of Python Apple provides). I have a module where there are two functions which call matplotlib to each create a different graph which both saved to an output PNG file.