|
From: theozh <th...@gm...> - 2018-10-28 18:24:25
|
... in the meantime I think I have found a way to display the columnheaders as xtics.
A pretty strange workaround, and I am pretty sure there must be a simpler way.
Still, the issue with
plot for [i=2:*] $Data u ...
remains. Gnuplot will be blocked...
# put the columnheaders into xtics
...
set xtics ("" 0) # remove all tics
set table $Nowhere
do for [i=2:5] {
plot $Data u (head=stringcolumn(i),0) every ::0::0 with table
set xtics add (head i-2)
}
unset table
...
###
|