|
From: John H. <jd...@gm...> - 2008-08-04 12:20:06
|
On Mon, Aug 4, 2008 at 4:48 AM, Manuel Metz <mm...@as...> wrote: > Use the named kwarg "linestyle": > > plot(Time, Value, '#330066', linestyle='.') I think you meant marker, since the '.' represents a marker rather than a linestyle plot(Time, Value, color='#330066', marker='.') JDH |