I've following data:
I want to plot a graph shows for all x the mean connected with lines (linespoint) and also showing all the confidence interval [ci_lower, ci_upper]. I managed to do that using 2 plots.
set xrange [0:1100000]
set yrange [0:5000]
plot \
'2011-06-16_1n_result.txt' using 1:7 title '1 node' with lines, \
'2011-06-16_1n_result.txt' using 1:7:10:11 notitle with errorbars
However it doesn't look nice with two colors and I have the feeling that there should be a way to do that with a single plot.
What's the solution code to that?
Best, Will