source: doc/theses/aaron_moss_PhD/phd/evaluation/per-prob.gp

Last change on this file was 4c41b17, checked in by Aaron Moss <a3moss@…>, 5 years ago

thesis: Add per-problem histogram

  • Property mode set to 100644
File size: 795 bytes
Line 
1# set terminal pdfcairo linewidth 3 size 6,3
2# set output "per-prob-histo.pdf"
3set terminal pslatex size 6.25,2.125 color solid
4set output BUILD."per-prob-histo.tex"
5
6set linetype 1 lc rgb 'black'
7set linetype 2 lc rgb 'red'
8set linetype 3 lc rgb 'blue'
9set linetype 4 lc rgb 'green'
10
11set style data histogram
12set style histogram cluster # gap 2
13set style fill pattern 4 border lt -1
14
15set xlabel "expression time (ms)"
16set xtics nomirror
17
18set ylabel "count"
19set logscale y
20set format y "$%.0f$"
21set ytics autofreq nomirror
22
23set y2label "ms"
24set logscale y2
25set format y2 "$%.0f$"
26set y2tics autofreq nomirror
27
28plot 'evaluation/per-prob.tsv' using 2:xticlabels(1) title 'expressions (count)',\
29     'evaluation/per-prob.tsv' using (column(3)/1000):xticlabels(1) title 'total time (ms)' axes x1y2
Note: See TracBrowser for help on using the repository browser.