[Matplotlib-users] rc params strangeness/error

2009-02-03 Thread Leo Trottier
Matplotlib 0.98.5.2 Location: C:\leo\.matplotlib Running Windows XP SP2 Obtained from pythonxy v. 2.1.10 No rc customizations ... I've been having a devil of a time getting my rcParams to update mid-script. Perhaps this isn't possible, but if that's so, it's not entirely clear. Even if it is so,

Re: [Matplotlib-users] setting thickness of axis frame

2009-02-03 Thread Christopher Brown
Hi Michael, MH> The Axes object has a method for turning on the frame: MH> set_frame_on(). How do I set the thickness of the frame that MH> appears? I use: plt.gca().get_frame().set_linewidth(2) -- Christopher Brown, Ph.D. Department of Speech and Hearing Science Arizona State University --

[Matplotlib-users] setting thickness of axis frame

2009-02-03 Thread Michael Hearne
The Axes object has a method for turning on the frame: set_frame_on(). How do I set the thickness of the frame that appears? Thanks, Mike Hearne -- Create and Deploy Rich Internet Apps outside the browser with Adobe(R)

Re: [Matplotlib-users] ticks Locator class

2009-02-03 Thread Eric Firing
Thomas Robitaille wrote: > Hi everyone, > > I am defining my own Locator class to determine where matplotlib > should place the ticks on the x axis. I have managed do so, except > for one problem. In order to determine the position of the ticks on > the x-axis, I not only need the x axis ran

[Matplotlib-users] contour animation

2009-02-03 Thread Gideon Simpson
Is it possible to do animation with contour plots? How? -gideon -- Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe AIR, Ajax developers can use existing skills and code

[Matplotlib-users] ticks Locator class

2009-02-03 Thread Thomas Robitaille
Hi everyone, I am defining my own Locator class to determine where matplotlib should place the ticks on the x axis. I have managed do so, except for one problem. In order to determine the position of the ticks on the x-axis, I not only need the x axis range, which I can retrieve with self.

Re: [Matplotlib-users] csv2rec column names

2009-02-03 Thread Thomas I-N
Hello Anton, I just had the same problem and came up with the following solution: a = csv2rec(fname) # read a csv file into a a[a.dtype.names[5]] # access column 6 (index 5) in the file As a shorthand you could assign the column names to another field in the recarray: a.cols = a.dtype.names a