Re: [Matplotlib-users] mplot3d scatter3d marker sizes?

2010-01-18 Thread Matthias Michler
Hi Erik, with current svn I see markers of different size. What version of matplotlib you are using? Kind regards, Matthias On Monday 18 January 2010 21:38:25 Erik Tollerud wrote: > Is there a way to change the sizes of scatter plot markers for > mplot3d.Axes3D.scatter3d ? I do > > from mpl_too

Re: [Matplotlib-users] Annotate Behaviour - Arrows Missing

2010-01-18 Thread Kurt Forrester
JJ thanks for the tip unfortunately there was no change. I modified the script for the hax. annotate(...) to include the annotate_clip=False, however there is no change in the behaviour of the arrows. They are not visible until the xy=(a,b) have values for "a" and "b" that are both greater tha

Re: [Matplotlib-users] Annotate Behaviour - Arrows Missing

2010-01-18 Thread Jae-Joon Lee
This is the feature that is not properly documented. You should call annotate with optional keyword annotation_clip=False, See below for the details. http://matplotlib.sourceforge.net/api/artist_api.html?highlight=annotation#matplotlib.text.Annotation.set_annotation_clip I'll fix the do

[Matplotlib-users] [matplotlib-users] Figure dimensions issues

2010-01-18 Thread Damon McDougall
Hi all, I'm using the PDF backend and I'm mucking around with the figure width and height settings to try and get the label text size equal to that of the tex in a LaTeX report I'm writing. The following code set my dimensions: FACTOR = 1.0 fig_width_pt = 483.69687 * FACTOR # figure width in

Re: [Matplotlib-users] problem with import pylab

2010-01-18 Thread Christoph Gohlke
The extension _TKAGG.PYD depends on TK84.DLL, TCL84.DLL, MSVCP71.DLL, and MSVCR71.DLL. Make sure all these files are located in the Windows search path, e.g. in one of the directories listed in the PATH environment variable. Christoph On 1/18/2010 1:45 PM, H L wrote: > > Thanks. I ran the Simp

[Matplotlib-users] Using a table as a legend, ugly text output?

2010-01-18 Thread ashleyd
I'm trying to figure out if it's possible to use a table as a legend of sorts, as I have a very busy graph I'm trying to describe. Basically: - I'm visualizing data from a series of similar but not-quite-identical simulations - I'd like to have the simulation parameters displayed in a table forma

Re: [Matplotlib-users] problem with import pylab

2010-01-18 Thread H L
Thanks. I ran the Simple Hello World program  (section 25.1.2.2 at http://docs.python.org/library/tkinter.html) without any problem, so I guess Tk installation itself is ok.   Someone has experience with getting matplotlib work with Tk?     --- On Sun, 1/17/10, Erik Tollerud wrote: From: Eri

Re: [Matplotlib-users] Size of text for axes title

2010-01-18 Thread Jae-Joon Lee
http://matplotlib.sourceforge.net/faq/howto_faq.html#automatically-make-room-for-tick-labels The above example is for ticklabels, but can be easily adopted for axes title. Regards, -JJ On Mon, Jan 18, 2010 at 12:07 PM, Jeremy Lewi wrote: > Hi, > > > > The title for my axes is being cutoff bec

[Matplotlib-users] mplot3d scatter3d marker sizes?

2010-01-18 Thread Erik Tollerud
Is there a way to change the sizes of scatter plot markers for mplot3d.Axes3D.scatter3d ? I do from mpl_toolkits.mplot3d import Axes3D ax = Axes3D(gcf()) x,y,z = randn(3,20) ax.scatter(x,y,z,s=30*rand(20)) and I expect to see 20 points of a range of sizes from 1 to 30... but instead I see them a

[Matplotlib-users] Size of text for axes title

2010-01-18 Thread Jeremy Lewi
Hi, The title for my axes is being cutoff because the axes is taking up too much space. Is there anyway to determine how much space is needed for the title so that I can set the axes size to the correct height to prevent the title from being cutoff? Thanks Jeremy Lewi Engineering Scien