I have three columns data.txt file. I would like to fill the area with color between upper and lower bound. How can I do that? My data.txt file goes as follows,
#Time Force SD
0.000 42.155 1.974
4.890 48.548 3.773
16.102 53.244 4.959
24.215 58.864 5.677
37.698 72.483 4.828
69.354 78.334 3.557
85.586 83.071 7.040
101.155 84.780 5.411
plot "data.txt" u 1:($2+$3) and u 1:($2-$3) w filledcurve (Is there any thing like this?)
Many thanks!