Я пытаюсь построить сложенные графики, используя мультиплот GNUPLOT (Версия 4.6). Я получаю ошибку
«Участок: В доступе отказано»
Вот мой код:
set terminal pngcairo size 600, 900
set output 'stacking.png'
set lmargin at screen 0.15
set rmargin at screen 0.15
set multiplot
set size 2.0,1.0
set xlabel 'position'
set ylabel 'AUC diff1'
set tmargin 2
set bmargin 1
set ytics -1000,500,1000
plot 'data1.sub' using 2:5 axes x1y1 title "WTK4me3" with lines lw 2 lc rgb 'red'
unset xlabel
set ylabel 'AUC diff2'
set tmargin 2
set bmargin 1
set ytics -1000,500,1000
plot 'data2.sub' using 2:5 axes x1y1 title "Data2" with lines lw 2 lc rgb 'red'
set ylabel 'AUC diff3'
set tmargin 2
set bmargin 1
set ytics -1000,500,1000
plot 'data3.sub' using 2:5 axes x1y1 title "data3" with lines lw 2 lc rgb 'blue'
неустановленный мультиплот
Я никогда не использовал мультиплот раньше. Когда я строю файлы по отдельности (или перекладываю все три из них на одну фигуру), они работают нормально.