]> rtime.felk.cvut.cz Git - hubacji1/iamcar2.git/blob - scripts/plot_statistics_nodes.pl
Fix private member name
[hubacji1/iamcar2.git] / scripts / plot_statistics_nodes.pl
1 # To run with folder name (aka planner) at x axis, use:
2 #
3 #       gnuplot -e "lx=2" plot_statistics_nodes.pl
4 #
5 if (!exists('lx')) lx=3
6   plot 'stats' u 31:xticlabels(lx) w histeps lc rgb '#ff0000' t 'Avg nodes [-]'
7 replot 'stats' u 32:xticlabels(lx) w histeps lc rgb '#ffaaaa' t 'Stddev nodes [-]'
8 replot 'stats' u 33:xticlabels(lx) w histeps lc rgb '#0000ff' t 'Median nodes [-]'
9 replot 'stats' u 34:xticlabels(lx) w histeps lc rgb '#aaaaff' t 'Max nodes [-]'
10 replot 'stats' u 35:xticlabels(lx) w histeps lc rgb '#aaaaff' t 'Min nodes [-]'
11 set terminal postscript eps size 3.5,2.62 enhanced color font 'Courrier,20' linewidth 2
12 set output 'out.eps'
13 replot