[Matplotlib-users] dynamic_image_wxagg.py not closing - fixed

2006-09-28 Thread Werner F. Bruhin
Attached is an updated version which does close. I move the timer code and added and EVT_CLOSE which stops the timer and now it closes correctly. Werner dynamic_image_wxagg.py Description: application/python - Take

Re: [Matplotlib-users] eps file format

2006-09-28 Thread John Hunter
Christian == Christian Meesters [EMAIL PROTECTED] writes: Christian Hi, I'd like to write a paper with figures in eps Christian format. Since the paper is for one of Elseviers Christian journals the eps-figures have to meet the following Christian requirements: - all colors have

Re: [Matplotlib-users] eps file format

2006-09-28 Thread Alan G Isaac
On Thu, 28 Sep 2006, Christian Meesters apparently wrote: - it should include a 8bit preview/header at a resolution of 72dpi - no idea how to generate this I think you can use http://www.cs.wisc.edu/~ghost/gsview/epstool.htm but do not know what dpi control you'll have. hth, Alan Isaac

Re: [Matplotlib-users] eps file format

2006-09-28 Thread Christian Meesters
Thanks, John and Alan, That was fast! As for the fonts, yes, you can control this with rc. Sure, but what about the latex rendered parts? (I wonder whether it actually matters, but I'd like to be sure, because there so little time left ...) On Thu, 28 Sep 2006, Christian Meesters apparently

[Matplotlib-users] line styles with hollow circles?

2006-09-28 Thread Christian Meesters
Hi, I'd like to plot experimental data points with fitted data through it. This time best would be to plot hollow circles for the experimental data. Pretty much like literal 'o's (except, of course, that passing 'o' results in thick circles). Is this possible somehow? TIA Christian

Re: [Matplotlib-users] eps file format

2006-09-28 Thread Christian Meesters
As for the preview header, I suspect there arte 3rd part tools that can do this (ImageMagick?). We should be able to do it ourself with agg, but it would require someone to dig in and figure out the spec. JDH One last remark on this: Since so many journals demand this, would it be worth a

Re: [Matplotlib-users] line styles with hollow circles?

2006-09-28 Thread Stefan van der Walt
On Thu, Sep 28, 2006 at 08:24:44PM +0200, Christian Meesters wrote: I'd like to plot experimental data points with fitted data through it. This time best would be to plot hollow circles for the experimental data. Pretty much like literal 'o's (except, of course, that passing 'o' results in

[Matplotlib-users] How to plot two graphs in two different windows at the same time?

2006-09-28 Thread zhangh1
Hi, Is there any way to plot two graphs in two different windows at the same time? The reason for doing this is that I wanted to update a graph automatically in a for loop, but it turned out that the first figure has to closed manually. Any suggestion for that is also greatly appreciated. Best

Re: [Matplotlib-users] line styles with hollow circles?

2006-09-28 Thread Jouni K Seppanen
Stefan van der Walt [EMAIL PROTECTED] writes: plot(x,y,'o',markerfacecolor='w') This makes circles filled with white. If you want circles that don't obscure whatever is behind them, use markerfacecolor=None. -- Jouni -