Стиль графика with filledcurves
может использоваться с 3 столбцами входных данных для создания затененных областей. Центральные линии должны быть проведены отдельно.
Gnuplot ожидает ввода
x y1 y2
поэтому, если ваши данные имеют форму x, y, delta-y, вы можете создать команды gnuplot, создав y1 и y2 в спецификаторе using
set term png truecolor # or "set term pngcairo"
set output 'fill.png'
#
set style fill transparent solid 0.25 # partial transparency
set style fill noborder # no separate top/bottom lines
plot 'data' using 1:2 with lines lc "blue" title "Force", \
'data' using 1:($2-$3):($2+$3) with filledcurves lc "blue" notitle, \
'data' using ($1-Shift):2 with lines lc "green" title "Shift", \
'data' using ($1-Shift):($2-$3):($2+$3) with filledcurves lc "green" notitle