fio2gnuplot: Fixing Yaxis rendering for 2D plots
authorErwan Velu <erwan@enovance.com>
Tue, 16 Jul 2013 09:07:34 +0000 (11:07 +0200)
committerErwan Velu <erwan@enovance.com>
Sun, 21 Jul 2013 09:58:49 +0000 (11:58 +0200)
With many values, gnuplot was complaining about too many ticks like :

"graph2D.gpm", line 26: warning: Too many axis ticks requested (>9e+03)

Using the "auto" command, that works much more better and axis are now
readable

tools/plot/graph2D.gpm

index 2d0d30ad002384a433876eca087707728ac5a53d..efc7ac27a82e2d95ee3a4a145b2069a1dd011b4c 100644 (file)
@@ -8,7 +8,7 @@ set output '$3.png'
 
 #Preparing Axes
 #set logscale x
 
 #Preparing Axes
 #set logscale x
-set ytics axis out
+set ytics axis out auto 
 #set data style lines
 set key top left reverse
 set xlabel "Time (Seconds)"
 #set data style lines
 set key top left reverse
 set xlabel "Time (Seconds)"