-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbox-err.gnuplot
45 lines (38 loc) · 1.32 KB
/
box-err.gnuplot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
set autoscale # scale axes automatically
unset log # remove any log-scaling
unset label # remove any previous labels
#set xtic .1 # set xtics automatically
#set ytic auto # set ytics automatically
set tics nomirror
#set term pngcairo size 1000,1000 enhanced font 'Verdana,10'
#set terminal svg enhanced fname 'Verdana, Helvetica, Arial, sans-serif' fsize 10
#set terminal epslatex size 10cm,10cm color colortext
set terminal postscript eps size 10cm,10cm enhanced color font 'Helvetica,20' linewidth 2
set xlabel font 'Helvetica,28'
set ylabel font 'Helvetica,28'
# set xtics font 'Helvetica,25'
# set ytics font 'Helvetica,25'
#set xlabel 'Mechanism'
set ylabel 'Error (m)'
# set xr [0:30]
# set yr [0:5000]
#req
set style line 1 lt 1 lc rgb 'black'
#mappa
set style line 2 lt 1 lc rgb '#E1701F'
#lapla-w
set style line 3 lt 1 lc rgb 'red'
#lapla-s
set style line 4 lt 1 lc rgb 'blue'
set style boxplot nooutliers pointtype 19
set style data boxplot
#unset key
set xtics ("EM country" 1, "EM city" 2)
set xtics nomirror
set ytics nomirror
plot \
mappa_weak using (1):2 ls 2 title '', \
mappa_strong using (2):2 ls 2 title '', \
laplaw ls 3 title 'PLh', \
laplas ls 4 title 'PLl'
#pause -1