[Matplotlib-users] annotation problem

2007-09-01 Thread Alan G Isaac
I meant to be copying an annotation example from http://matplotlib.sourceforge.net/examples/annotation_demo.bak.py but it is not working. Am I just too bleary eyed because it is later here, or is there a problem with the example? Thank you, Alan Isaac Illustrate Annotation

Re: [Matplotlib-users] marker=None not allowed?

2007-09-01 Thread Eric Firing
Alan G Isaac wrote: Line2D documentation reads: marker: [ '+' | ',' | '.' | '1' | '2' | '3' | '4' 1. Minor documentation bug: missing end bracket Sort of. Actually, what is also missing is a very long list of possible markers, as given in the docstring for the set_marker method. Some

Re: [Matplotlib-users] annotation problem

2007-09-01 Thread Eric Firing
Alan G Isaac wrote: I meant to be copying an annotation example from http://matplotlib.sourceforge.net/examples/annotation_demo.bak.py I don't see much resemblance to that example; and I haven't tried that example, but I did verify that the examples/annotation_demo.py in svn works as expected.

[Matplotlib-users] dateplot problem

2007-09-01 Thread Alan G Isaac
I recall some discussion of problem importing mpl EPS files into Microsoft products in the past, and I think I recall that there was a fix. I'm using 0.9.1 and the dates in my dateplots do not show up when imported into PowerPoint. (An annotation below the dates does show up.) Any clues? Thank

Re: [Matplotlib-users] marker=None not allowed?

2007-09-01 Thread Alan G Isaac
On Fri, 31 Aug 2007, Eric Firing apparently wrote: marker='None' is allowed, as is ' ' and ''. Do you need None? I recently returned to some old figures where I did things like this: ls1 = dict(linestyle='-', marker=None, color=(0,0,1), linewidth=2, zorder=1000) fig_ax.plot_date(dates,

Re: [Matplotlib-users] dateplot problem

2007-09-01 Thread Jouni K . Seppänen
Alan G Isaac [EMAIL PROTECTED] writes: I recall some discussion of problem importing mpl EPS files into Microsoft products in the past, and I think I recall that there was a fix. Perhaps you are thinking of one of these posts, which suggest using the svg backend and converting to emf via

Re: [Matplotlib-users] marker=None not allowed?

2007-09-01 Thread Eric Firing
Alan G Isaac wrote: On Fri, 31 Aug 2007, Eric Firing apparently wrote: marker='None' is allowed, as is ' ' and ''. Do you need None? I recently returned to some old figures where I did things like this: ls1 = dict(linestyle='-', marker=None, color=(0,0,1), linewidth=2, zorder=1000)

Re: [Matplotlib-users] dateplot problem

2007-09-01 Thread Alan G Isaac
Alan G Isaac [EMAIL PROTECTED] writes: I recall some discussion of problem importing mpl EPS files into Microsoft products in the past, and I think I recall that there was a fix. On Sat, 01 Sep 2007, Jouni K. Seppänen apparently wrote: Perhaps you are thinking of one of these posts,