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

2006-09-29 Thread Christian Meesters
On Friday 29 September 2006 07:50, Jouni K Seppanen wrote: 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, Bill, thank you

[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] 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

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 -