I have an array which has values like:
percentile="P5,P10,P20,P25,P50,P75"
I'm using for loop for iteration in gnuplot, somewhat like this:
plot for [i=2:4] "Stats.data" using (column(1)):(column(i)) title "${percentile[i]}".i
What I want is that the titles to be taken up from the percentile array.But this isn't happening.
ERROR:invalid command