-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtechniques.gnuplot
31 lines (27 loc) · 1.11 KB
/
techniques.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
#set terminal png medium
#set output "techniques.png"
set terminal svg size 850,400 fname 'Verdana' fsize 10
set output 'techniques.svg'
#set terminal epslatex
#set output "techniques.tex"
#set size 0.7,1
# set boxwidth 1.0 absolute
set style fill pattern noborder
#set style fill solid 1.0 border
set style line 1 lt -1 linecolor rgb "blue" lw 3
set style line 2 lt -1 linecolor rgb "red" lw 3
set style line 3 lt -1 linecolor rgb "orange" lw 3
#set style line 1 lt -1 lw 3
#set style line 2 lt -1 lw 3
#set style line 3 lt -1 lw 3
#set style histogram rowstacked
set style data histograms
set mxtics 2
set mytics 2
#set xtics 2 rotate by -45
#set ytics 2
set yrange [0:*]
set label 1 "percentage of control points" at graph -0.125, graph 0.5 center rotate
#set xlabel "Techniques"
#plot '/tmp/data_gnuplot' using 3 t "$\\subsetneq$" fs solid 0.3 ls 1, '' using 4 t "$\\supsetneq$" fs pattern 3 ls 2, '' using 5:xtic(1) t "uncomparable" fs pattern 13 ls 3
plot '/tmp/data_gnuplot' using 3 t "$\\subsetneq$" fs solid 0.3 ls 1, '' using 4 t "$\\supsetneq$" fs solid 0.7 ls 2, '' using 5:xtic(1) t "uncomparable" fs solid 0.7 ls 3