Gnuplot 在两行之间填充

Gnuplot 在两行之间填充,gnuplot,Gnuplot,我有一代gnuplot: gnuplot -p -e "set title \"Enveloppe\"; plot 'WATER' using 1:2 title 'MAX' with lines, 'WATER' using 1:3 title 'MIN' with lines, 'WATER' using 1:4 title 'MEAN' with lines" 我想在最大值和最小值之间填充,不隐藏平均值,如下所示: 如何使用gnuplot进行操作?在所有其他绘图之前添加一个带有填充曲

我有一代gnuplot:

gnuplot -p -e "set title \"Enveloppe\";
plot 'WATER' using 1:2 title 'MAX' with lines,
'WATER' using 1:3 title 'MIN' with lines,
'WATER' using 1:4 title 'MEAN' with lines"

我想在最大值和最小值之间填充,不隐藏平均值,如下所示:


如何使用gnuplot进行操作?

在所有其他绘图之前添加一个带有填充曲线的打印

gnuplot -p -e "set title 'Enveloppe'; set style fill solid noborder;
    plot 'WATER' using 1:2:3 notitle with filledcurves,
        '' using 1:2 title 'MAX' with lines,
        '' using 1:3 title 'MIN' with lines,
        '' using 1:4 title 'MEAN' with lines"