#!/usr/bin/gnuplot set terminal png set xlabel "All values, sorted" set yrange [0:500] set key off unset xtic set grid ytics show grid set style line 1 f(x) = 100*x set title "effort MRE" set output "effort.png" plot "mre-effort-plot.dat" using (f($1)) with lines ls 1,\ "mre-effort-plot.dat" using (f($2)) with lines ls 1,\ "mre-effort-plot.dat" using (f($3)) with lines ls 1,\ "mre-effort-plot.dat" using (f($4)) with lines ls 1,\ "mre-effort-plot.dat" using (f($5)) with lines ls 1 set title "months MRE" set output "months.png" plot "mre-months-plot.dat" using (f($1)) with lines ls 1,\ "mre-months-plot.dat" using (f($2)) with lines ls 1,\ "mre-months-plot.dat" using (f($3)) with lines ls 1,\ "mre-months-plot.dat" using (f($4)) with lines ls 1,\ "mre-months-plot.dat" using (f($5)) with lines ls 1 set title "threats MRE" set output "threats.png" plot "mre-threats-plot.dat" using (f($1)) with lines ls 1,\ "mre-threats-plot.dat" using (f($2)) with lines ls 1,\ "mre-threats-plot.dat" using (f($3)) with lines ls 1,\ "mre-threats-plot.dat" using (f($4)) with lines ls 1,\ "mre-threats-plot.dat" using (f($5)) with lines ls 1 set title "defects MRE" set output "defects.png" plot "mre-defects-plot.dat" using (f($1)) with lines ls 1,\ "mre-defects-plot.dat" using (f($2)) with lines ls 1,\ "mre-defects-plot.dat" using (f($3)) with lines ls 1,\ "mre-defects-plot.dat" using (f($4)) with lines ls 1,\ "mre-defects-plot.dat" using (f($5)) with lines ls 1