[Matplotlib-users] AxesGrid question

2009-07-31 Thread Tommy Grav
i am trying to use the example at http://matplotlib.sourceforge.net/examples/axes_grid/simple_axesgrid.html but axes_grid is not in mpl_toolkits for the standard matplotlib build. Where can I get the axes_grid tools? Cheers Tommy -

Re: [Matplotlib-users] Radar / Spider Chars

2009-07-31 Thread Josh Hemann
Fernando Perez wrote: > > Please! That example with the top labels looks great, and it's a very > useful way of displaying the numerical key parts of the dataset. > > Cheers, > > f > OK, here is a bloxplot example based on the one previously shown. I just replaced my environmental data with

[Matplotlib-users] Change the text of yticklabels

2009-07-31 Thread Lukas Hetzenecker
Hello, I have y values in the range of -100 to 100. I want that the negative values are shown as positive (the minus gets removed from the output). I tried a for loop over all self.ax.get_yticklabels() and call label.set_text("...") on each item but it didn't work - nothing got changed. If I p

Re: [Matplotlib-users] Include icon in plot

2009-07-31 Thread Bas van Leeuwen
Hello, I tried to implement a solution for this issue. Basically I want to give the x and y position in datacoords and the width + height in pixels. However, when using the following code: im = Image.open("../Icons/Program Icon.png") limx = self.mainAxes.get_xlim()

[Matplotlib-users] matplotlib-0.99.0-rc1 : call for testing

2009-07-31 Thread John Hunter
We have a test release candidate rc1 of the impending matplotlib-0.99.0 release, including lots of great new stuff like the axes grid and mplot3d toolkits, http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/index.html http://matplotlib.sourceforge.net/mpl_toolkits/mplot3d/tutorial.

Re: [Matplotlib-users] Design questions

2009-07-31 Thread Tony S Yu
On Jul 30, 2009, at 5:16 PM, Gewton Jhames wrote: Anyone? On Tue, Jul 28, 2009 at 3:23 PM, Gewton Jhames wrote: Guys, there is the code. On Tue, Jul 28, 2009 at 3:13 PM, Gewton Jhames wrote: Jae-Joon Lee, savefig("file.png", bbox_inches="tight") doesn't work too. On Mon, Jul 27, 200

Re: [Matplotlib-users] Marker positioning accuracy

2009-07-31 Thread Michael Droettboom
That is by design -- it's a performance vs. accuracy tradeoff. Markers are drawn only once and then stamped to the nearest pixel boundaries. What you're seeing is the result of this rounding. And since each marker is rounded in isolation, you don't see smooth stepping as a classical line dra