gnuplot will only plot the data point 95 when plotting the following data:
l1 l2 l3 l4 l5
108 108 108 108 108
108 108 108 108 108
108 108 108 108 108
108 108 108 108 108
108 108 108 95 108
Strangely, when I remove the first two data lines, all data points will be plotted.
The code I am using is
file = 'xxx'
header = system('head -1 '.file);
N = words(header)
set xtics ('' 1)
set xtics ('' 1)
set for [i=1:N] xtics add (word(header, i) i)
set style data boxplot
unset key
plot for [i=1:N] file using (i):i
and it worked quite well for many other data series.
Thanks a lot in advance!