-
Notifications
You must be signed in to change notification settings - Fork 4
/
xplt.p
executable file
·29 lines (29 loc) · 1.05 KB
/
xplt.p
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
set t pngcairo enhanced dashed font "arial,12" size 1000,300; set output "figs/m0.png";
#set t svg enhanced dashed font "arial,12" size 1000,300; set output "figs/con.svg";
set multiplot layout 1,m0
set border 3;
set xrange [0:1500]
set xtics 500 nomirror;
set ytics nomirror;
fkey=0.985;
set autoscale;
set key autotitle columnhead
set xlabel 'time(min)' offset 0,0.5
set key right above
set style line 1 lt 1 lw 1.5 lc rgb "#204a87"
set style line 2 lt 2 lw 1.5 lc rgb "#204a87"
set style line 3 lt 3 lw 1.5 lc rgb "#204a87"
set style line 4 lt 1 lw 1.5 lc rgb "#f57900"
set ylabel '% unlabeled' offset 2,0
do for [n=1:m0]{
plot 'exm0' u 1:(100*column(n*2)):(100*column(n*2+1)) w err pt 2 t columnhead(n*2), 'kinGlc' u 1:(100*column(n+1)) w l ls 4
}
unset multiplot;
set output "figs/con.png";
set multiplot layout 1,con
set ylabel 'concentration(mM)' offset 2,0
do for [n=1:con]{
plot 'excon' u 1:(column(n*2)):(column(n*2+1)) w err pt 2 t columnhead(n*2), 'kincon' u 1:(column(n+1)) w l
}
unset multiplot;
# w p pt 3 t columnhead(n*2), 'kinGlc' u 1:(100*column(n+1)) w l