[Matplotlib-users] Matplotlib phylosophy

2007-07-23 Thread Zack 24
Hi All, Been reading this mail-list for a long time, I came to a conclusion, that principal structure of the program is not well thought. Look at the ton of mails where is asking how to change one or another parameter in the given Plot. People just don't remember all functions or variables which

Re: [Matplotlib-users] SVG vs PNG

2007-05-11 Thread Zack
n externally rendered svg and > mpl/agg-produced png. Right. SVG in Matplotlib is NOT vector format and it has no sense to use it instead of PNG or any others. I'm just wondering, why it was implemented... if it implemen

Re: [Matplotlib-users] Problem with the position of tick la bels in postscript file

2007-05-04 Thread Zack
Hi Richard, what exactly wrong here? I didn't found anything... On 4 May 2007, Richard Vernhes wrote: > Here is attached the eps file with misaligned labels and grid. > Richard -- Zack - This SF.net email is s

Re: [Matplotlib-users] making subplots with rows different sizes

2007-03-21 Thread Zack
You just have to set figure size you need. f = Figure(figsize=(5,4), dpi=100) -- Zack - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your

[Matplotlib-users] Drawing in the plot area.

2007-03-09 Thread Zack 24
Hi, All Is it possible to draw any graphical primitives in the plot area using its scale? Let say, I want to plot a filled circle there. Where do I have to look on? Thanks in advance, Alexey - Take Surveys. Earn Cash. Infl

[Matplotlib-users] bug in axes3d.py

2007-03-07 Thread Zack 24
Matplotlib 0.90 Found the bug in axes3d.py lines 513, 514 please change: for rs in nx.arange(0,rows,rstride): for cs in nx.arange(0,cols,cstride): to: for rs in nx.arange(0,rows-1,rstride): for cs in nx.arange(0,cols-1,cstride): Otherwise I'm getting error

Re: [Matplotlib-users] Contour Plot of experimental data (Zack 24)

2007-03-07 Thread Zack 24
Thanks Mark for the link! Exactly what I need. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief

[Matplotlib-users] Contour Plot of experimental data

2007-03-07 Thread Zack 24
Hi, I've found no possibility to plot my experimental data with Matplotlib. The data are coming in the form of a list of xyz vector. [[1,2,3],[4,5,6],...] But Matplotlib needs 2D grid, which I can't provide. Does anybody know a solution of such a problem? It will be pretty nice to integrate a c

Re: [Matplotlib-users] Controling the tick thickness

2006-10-09 Thread Zack
Bonjour François! Take it easy. rc("lines", markeredgewidth=4) There is no reasons to put cycle inside you code. Regards, On Sunday 08 October 2006 12:08, François Beaubert wrote: > Le Vendredi 6 Octobre 2006 19:59, John Hunter a écrit : > > for line in ax.get_xticklines(): > >     line.set_l

[Matplotlib-users] Inline constants! (DPI)

2006-10-05 Thread Zack
x27;, **kwargs): backends/backend_wx.py: def print_figure(self, filename, dpi=150, facecolor='w', edgecolor='w', orientation='portrait', **kwargs): ps.figure.dpi.set(72) __init__.py: 'figure.dpi': [ 80, va

Re: [Matplotlib-users] Label & ticks spacing

2006-09-17 Thread Zack
Hi, John! On Sunday 17 September 2006 19:26, John Hunter wrote: > The tick labels are part of the Tick, so this setting will affect > them. The Axis labels are automatically placed to be below (or to the > left of) the tick labels. So it may be enough to simply set the pad. I have found the pa

Re: [Matplotlib-users] Label & ticks spacing

2006-09-17 Thread Zack
Hi, Thanks for your help. On Sunday 17 September 2006 16:54, John Hunter wrote: > From code, you can also control the pad with, for example, > for tick in ax.xaxis.get_major_ticks(): > tick.set_pad(6) And how do I do same thing with labels? They are instances of Text object not ticks. -- Al

[Matplotlib-users] Label & ticks spacing

2006-09-17 Thread Zack
Hi, all how to change the spacing between axes and ticks labels, ticks labels and axes labels? I mean vertical spacing for X axis and horizontal one for Y. Thanks, -- Alexey - Using Tomcat but need to do more? Need to sup

[Matplotlib-users] Ternary Plot

2006-09-03 Thread Zack
Hi, How do I make Ternary plot with Matplotlib? (http://en.wikipedia.org/wiki/Ternary_plot) Or even more common question how it possible to make a plot based on non orthogonal axes? (like on the picture with Miller-Bravais indices http://en.wikipedia.org/wiki/Miller_indices) Thanks, -- Al