You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
512 B

#
set terminal pdfcairo size 4in,3in font "Arial,12"
set output 'path_length_plot.pdf'
set xlabel "generation"
set ylabel "path length"
set grid
set xrange [0:100]
set yrange [0:80]
set xtics 10
set ytics 10
#
# $0 0
# 1:min, 2:avg, 3:max
plot 'output.dat' using 0:1 with lines title "Min", \
'' using 0:2 with lines title "Avg", \
'' using 0:3 with lines title "Max"