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
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
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
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
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 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
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
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
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
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
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
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
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
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
14 matches
Mail list logo