From: Tom K. <to...@ko...> - 2004-09-27 19:52:34
|
Robert: Thank you so much. > Add 'errorbars' to the 'with' keyword, e.g.: > > gnuplot.plot(Gnuplot.Data(theData, with="errorbars")) This works beautifully. I'm having trouble with the x2/y2 stuff: >> 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]') import Gnuplot g = Gnuplot.Gnuplot() g('set x2range [-10:10]') g('show x2range') g.plot([[0,1.1], [1,5.8], [2,3.3], [3,4.2]]) Am I doing the right thing? I appreciate your help. Tom |