Tom Kornack wrote:
> I have two plotting needs:
>
> 1. Does anyone know if there is a way to make error bars in this gnuplot
> module?
Add 'errorbars' to the 'with' keyword, e.g.:
gnuplot.plot(Gnuplot.Data(theData, with="errorbars"))
The data must include the necessary information to plot the errorbars, see the
gnuplot help on errorbars for more info.
> 2. Is it possible to make two scales for the x and y axes? Like celsius
> on one side and fahrenheit on the other?
I haven't done it myself but I think you can use the set x2/y2...(range, label,
tics, etc) to do this, i.e. gnuplot('set x2range [-10:10]')
HTH
Robert
|