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,
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
--
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)
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
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
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.
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