-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathccurves.gpl
More file actions
52 lines (47 loc) · 1.59 KB
/
Copy pathccurves.gpl
File metadata and controls
52 lines (47 loc) · 1.59 KB
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
46
47
48
49
50
51
52
# plot cumulated curves of actives
set key top left
set xtics out nomirror
set ytics out nomirror
set xlabel 'candidate molecule rank'
set ylabel 'cumulated #actives'
set term postscript eps enhanced color
set output '2.ccurve.eps'
set title 'cons size 2'
plot 'opti.2.ccurve' u 4:5 t 'opti', \
'pess.2.ccurve' u 4:5 t 'pess', \
'real.2.ccurve' u 4:5 t 'real', \
'sing.2.ccurve' u 4:5 t 'sing', \
'oppo.2.ccurve' u 4:5 t 'oppo', \
'kopp.2.ccurve' u 4:5 t 'kopp'
set output '3.ccurve.eps'
set title 'cons size 3'
plot 'opti.3.ccurve' u 4:5 t 'opti', \
'pess.3.ccurve' u 4:5 t 'pess', \
'real.3.ccurve' u 4:5 t 'real', \
'sing.3.ccurve' u 4:5 t 'sing', \
'oppo.3.ccurve' u 4:5 t 'oppo', \
'kopp.3.ccurve' u 4:5 t 'kopp'
set output '5.ccurve.eps'
set title 'cons size 5'
plot 'opti.5.ccurve' u 4:5 t 'opti', \
'pess.5.ccurve' u 4:5 t 'pess', \
'real.5.ccurve' u 4:5 t 'real', \
'sing.5.ccurve' u 4:5 t 'sing', \
'oppo.5.ccurve' u 4:5 t 'oppo', \
'kopp.5.ccurve' u 4:5 t 'kopp'
set output '10.ccurve.eps'
set title 'cons size 10'
plot 'opti.10.ccurve' u 4:5 t 'opti', \
'pess.10.ccurve' u 4:5 t 'pess', \
'real.10.ccurve' u 4:5 t 'real', \
'sing.10.ccurve' u 4:5 t 'sing', \
'oppo.10.ccurve' u 4:5 t 'oppo', \
'kopp.10.ccurve' u 4:5 t 'kopp'
set output '20.ccurve.eps'
set title 'cons size 20'
plot 'opti.20.ccurve' u 4:5 t 'opti', \
'pess.20.ccurve' u 4:5 t 'pess', \
'real.20.ccurve' u 4:5 t 'real', \
'sing.20.ccurve' u 4:5 t 'sing', \
'oppo.20.ccurve' u 4:5 t 'oppo', \
'kopp.20.ccurve' u 4:5 t 'kopp'