On Mon, Mar 1, 2010 at 8:36 AM, Michael Droettboom wrote:
> Alan G Isaac wrote:
> >> Gökhan Sever wrote:
> >>
> >>> For the second idea you mean something as generic as plotting such
> >>> markers?
> >>> plt.plot(range(10), linestyle='None', marker=u'※ ')
> >>>
> >
> >
> > On 3/1/2010 8:33 AM, M
On 3/1/2010 9:36 AM, Michael Droettboom wrote:
> What if you want to use the letter 'o' as a marker? That to me seems
like a potential source of confusion, as well as a little bit limiting.
What would the escaping syntax be to use the letter 'o'?
Maybe:
allow only unicode strings as string ma
Alan G Isaac wrote:
>> Gökhan Sever wrote:
>>
>>> For the second idea you mean something as generic as plotting such
>>> markers?
>>> plt.plot(range(10), linestyle='None', marker=u'※ ')
>>>
>
>
> On 3/1/2010 8:33 AM, Michael Droettboom wrote:
>
>> Yes -- but it can't be quite this
> Gökhan Sever wrote:
> > For the second idea you mean something as generic as plotting such
> > markers?
> > plt.plot(range(10), linestyle='None', marker=u'※ ')
On 3/1/2010 8:33 AM, Michael Droettboom wrote:
> Yes -- but it can't be quite this simple, since there is already a set
> of strings
Gökhan Sever wrote:
> Thanks again. I didn't know it was complete :)
>
> For the second idea you mean something as generic as plotting such
> markers?
>
> plt.plot(range(10), linestyle='None', marker=u'※ ')
Yes -- but it can't be quite this simple, since there is already a set
of strings that hav
Thanks again. I didn't know it was complete :)
For the second idea you mean something as generic as plotting such markers?
plt.plot(range(10), linestyle='None', marker=u'※ ')
On Fri, Feb 26, 2010 at 2:56 PM, Michael Droettboom wrote:
> SVN trunk has support for mathtext as symbol markers --
SVN trunk has support for mathtext as symbol markers --
plot(range(10), linestyle='None', marker=r'$\clubsuit$')
We could support arbitrary (non-math) text, too, fairly easily. We just
need to invent a syntax for it.
Mike
Gökhan Sever wrote:
> Thanks Mike. The Greek symbols become visible w
Thanks Mike. The Greek symbols become visible when I make the changes as you
suggested. DejaVu Sans has been installed in my system (Fedora 12). We might
put a note on the documentation stating to get wider Unicode coverage people
could install additional fonts --DejaVu Sans being one of them inste
Thanks for the reminder. Sorry this fell through the cracks.
The reason this worked for me and not for you is that I had set (and
later forgotten) font.sans-serif to the following:
font.sans-serif : DejaVu Sans, Bitstream Vera Sans, Lucida
Grande, Verdana, Geneva, Lucid, Arial, Helvetic
On Tue, Jan 26, 2010 at 11:29 AM, Michael Droettboom wrote:
> per freem wrote:
> > Hi all,
> >
> > To annotate my figures with Greek letters, I use the following:
> >
> > import matplotlib
> > matplotlib.use('PDF')
> > import matplotlib.pyplot as plt
> > from matplotlib import rc
> > rc('font',**{
per freem wrote:
> Hi all,
>
> To annotate my figures with Greek letters, I use the following:
>
> import matplotlib
> matplotlib.use('PDF')
> import matplotlib.pyplot as plt
> from matplotlib import rc
> rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})
> plt.rcParams['ps.useafm'] =
Hi all,
To annotate my figures with Greek letters, I use the following:
import matplotlib
matplotlib.use('PDF')
import matplotlib.pyplot as plt
from matplotlib import rc
rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})
plt.rcParams['ps.useafm'] = True
rc('font',**{'family':'sans-se
12 matches
Mail list logo