# gnuplot file to generate a graph based on the following file named 'log' # and formatted as follow (without the '#' of course) #01 July 2003 240 200 1 1 #02 July 2003 239 199 1 1 # # Author: Jerome@CoffeeBreaks set terminal png set output "log.png" set title "Number of packages in Sid compiled against deprecated g++ versions (i386)" set xlabel "History" set ylabel "Number" set xdata time set timefmt "%m/%d/%y" set format x "%m/%d" set timefmt "%d %B %Y" set yr [0:2000] # plot the graph as is plot "log" u 1:4 t 'gcc 2.9.5' w lines, \ "log" u 1:5 t 'gcc 2.9.5 (sources)' w lines, \ "log" u 1:6 t 'gcc 3.3' w lines, \ "log" u 1:7 t 'gcc 3.3 (sources)' w lines set yr [0:200] set output "log14.png" plot "log.14" u 1:4 t 'gcc 2.9.5' w lines, \ "log.14" u 1:5 t 'gcc 2.9.5 (sources)' w lines, \ "log.14" u 1:6 t 'gcc 3.3' w lines, \ "log.14" u 1:7 t 'gcc 3.3 (sources)' w lines