Jeremy Conlin wrote:
> I would like to specify the point size of my plotted data. I have this:
>
> Histo = Gnuplot.Data(Bins,Bincounts, with='points')
>
> I would like my pointsize to be 0.5. I tried doing:
>
> Histo = Gnuplot.Data(Bins,Bincounts, with='points', pointsize=0.5)
>
> but got
>
> Gnuplot.Errors.OptionError: pointsize=0.5
>
> What do I have to do to specify a pointsize for my plot(s)?
"pointsize" is not supported as a separate option, but you can treat it
as part of the "with" argument:
Histo = Gnuplot.Data(Bins,Bincounts, with='points pointsize 0.5')
Undoubtedly this could be improved, but unfortunately I don't have time
to work on Gnuplot.py.
Michael
|