Re: [Matplotlib-users] Backend Comparison

2009-07-13 Thread vehemental
Let me give some results of experience regarding these issues On the same dataset of 600 *7500 points, with the simple plot function, (from the example, embedding in wxagg) WxAgg was much faster than Wx... on a linux machine, while the WxAgg drawing appeared close to a second or 2 after launc

Re: [Matplotlib-users] contribute to gallery? Or, just advice on changing colors automagically....

2009-07-10 Thread vehemental
Hi, I may be wrong, but arent these already examples of what you trying to show here?: http://matplotlib.sourceforge.net/examples/pylab_examples/line_collection2.html http://matplotlib.sourceforge.net/examples/pylab_examples/ellipse_collection.html if you use a collection you can quickly setup t

Re: [Matplotlib-users] Visuals for linux file systems

2009-07-09 Thread vehemental
I believe most of the plots have been made using this: http://people.csail.mit.edu/rasmus/summon/index.shtml#download I'm currently playing around with 2D OpenGL visualization of large datasets and stumbled upon this... which reminded me of this post... may be of use to someone j. Gökhan SEVE

[Matplotlib-users] LineCollection and fill....

2009-05-24 Thread vehemental
Hi guys, I' m playing around with line collections, and I was wondering if it was possible to use fill with line collections? or maybe I would have to use PolyCollection? would it represents a big challenge to include that in Linecollection? (just to know if I could do it myself eventually) on

Re: [Matplotlib-users] Correct usage of Mpl backend...

2008-12-15 Thread vehemental
Thanks. I understood the explanation you gave me...was not so sure how it translated in the language... so what i did is creating a init_plot method...that is creating a figure once and for all (empty) , attaching it to a canvas and pack it... then I have my showplot routine activated by the butt

[Matplotlib-users] Correct usage of Mpl backend...

2008-12-15 Thread vehemental
Hello, I' m new to MPL...and rather new to Python... so I hope I wont say too much stupidities... I' m writing a little Fileviewer...that will plot the data of the file...depending on some user inputs (not implemented yet) so I started playing around...using the Tk embbeded plot exemple... I add