|
| 1 | +set terminal pdf color solid enhanced size 6.5,3 |
| 2 | +set output '17.O2_CH4.figure.pdf' |
| 3 | +set datafile separator "\t" |
| 4 | +set style fill solid 1.00 noborder |
| 5 | +set style data lp |
| 6 | +set xlabel "Time (h)" |
| 7 | + |
| 8 | + |
| 9 | +set xtics |
| 10 | +set ytics |
| 11 | +set tics out |
| 12 | +set autoscale y |
| 13 | +set grid x y lc rgb "gray20" lw 1 |
| 14 | + |
| 15 | +# setup color blind palette |
| 16 | +set linetype 1 lc rgb "#E69F00" lw 1 pt 7 ps .3 |
| 17 | +set linetype 2 lc rgb "#56B4E9" lw 1 pt 7 ps .3 |
| 18 | +set linetype 3 lc rgb "#009E73" lw 1 pt 7 ps .3 |
| 19 | +set linetype 4 lc rgb "#F0E442" lw 1 pt 7 ps .3 |
| 20 | +set linetype 5 lc rgb "#0072B2" lw 1 pt 7 ps .3 |
| 21 | +set linetype 6 lc rgb "gray20" lw 1 pt 7 ps .3 |
| 22 | +set linetype cycle 6 |
| 23 | + |
| 24 | +set multiplot layout 1,2; |
| 25 | +set title "(a) O_2"; |
| 26 | +set ylabel "O_2 (% v/v)" |
| 27 | +set key right top |
| 28 | +plot '17.O2_CH4.figure.oxygen.tab' using 1:2:3 lt 1 t '5' w yerrorbars, \ |
| 29 | + '' using 1:4:5 lt 2 t '15' w yerrorbars, \ |
| 30 | + '' using 1:6:7 lt 3 t '25' w yerrorbars, \ |
| 31 | + '' using 1:8:9 lt 4 t '50' w yerrorbars, \ |
| 32 | + '' using 1:10:11 lt 5 t '75' w yerrorbars,\ |
| 33 | + '' using 1:2:3 lt 1 t '' w l,\ |
| 34 | + '' using 1:4:5 lt 2 t '' w l,\ |
| 35 | + '' using 1:6:7 lt 3 t '' w l,\ |
| 36 | + '' using 1:8:9 lt 4 t '' w l,\ |
| 37 | + '' using 1:10:11 lt 5 t '' w l |
| 38 | +set title "(b) CH_4"; |
| 39 | +set ylabel "CH_4 (% v/v)" |
| 40 | +set key left bottom |
| 41 | +plot '17.O2_CH4.figure.methane.tab' using 1:2:3 lt 1 t '5' w yerrorbars, \ |
| 42 | + '' using 1:4:5 lt 2 t '15' w yerrorbars, \ |
| 43 | + '' using 1:6:7 lt 3 t '25' w yerrorbars, \ |
| 44 | + '' using 1:8:9 lt 4 t '50' w yerrorbars, \ |
| 45 | + '' using 1:10:11 lt 5 t '75' w yerrorbars,\ |
| 46 | + '' using 1:2:3 lt 1 t '' w l,\ |
| 47 | + '' using 1:4:5 lt 2 t '' w l,\ |
| 48 | + '' using 1:6:7 lt 3 t '' w l,\ |
| 49 | + '' using 1:8:9 lt 4 t '' w l,\ |
| 50 | + '' using 1:10:11 lt 5 t '' w l |
| 51 | +unset multiplot |
0 commit comments