|
From: Thomas S. <t.s...@fz...> - 2009-08-26 09:44:02
|
- you could subtract e.g. '20' from the 2nd data set to bring the data into the same range (assuming that the datafile has the format "x y1 y2"): plot 'datafile' using 1:2, '' using 1:($3-20.0) but you lose the original data values - you could use the right side y-axis for the other plot range: set yrange [0:2] nomirror set y2range [20:22] plot 'datafile' using 1:2, '' using 1:3 axes x1y2 dmainzer wrote: > > Hi, > > i want to plot a data file but there is a big different in there values. > So there is a lot of space between the two curves. Now i want > to split the yrange for example into inverals of [0:2] and [20:22]; > is this possible ? > > There is no demo and i take a look in the help page but there is nothing > written about that. > > Best, > David > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > -- View this message in context: http://www.nabble.com/split-y-axis-in-intervals-tp25148845p25149626.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |