ADT
ast-experimental
Last change
on this file since bb7422a was 4c41b17, checked in by Aaron Moss <a3moss@…>, 7 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"
|
---|
3 | set terminal pslatex size 6.25,2.125 color solid
|
---|
4 | set output BUILD."per-prob-histo.tex"
|
---|
5 |
|
---|
6 | set linetype 1 lc rgb 'black'
|
---|
7 | set linetype 2 lc rgb 'red'
|
---|
8 | set linetype 3 lc rgb 'blue'
|
---|
9 | set linetype 4 lc rgb 'green'
|
---|
10 |
|
---|
11 | set style data histogram
|
---|
12 | set style histogram cluster # gap 2
|
---|
13 | set style fill pattern 4 border lt -1
|
---|
14 |
|
---|
15 | set xlabel "expression time (ms)"
|
---|
16 | set xtics nomirror
|
---|
17 |
|
---|
18 | set ylabel "count"
|
---|
19 | set logscale y
|
---|
20 | set format y "$%.0f$"
|
---|
21 | set ytics autofreq nomirror
|
---|
22 |
|
---|
23 | set y2label "ms"
|
---|
24 | set logscale y2
|
---|
25 | set format y2 "$%.0f$"
|
---|
26 | set y2tics autofreq nomirror
|
---|
27 |
|
---|
28 | plot '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.