gnuplot print column header with stats
Clash Royale CLAN TAG #URR8PPP gnuplot print column header with stats The gunplot stats command can be used to report stats for an input dataset. It creates a set of variables containing information about a specific column in the dataset. Here is an example of such use: stats set print "StatDat.dat" do for [i=2:9] { # Here you will use i for the column. stats 'data.dat' u i nooutput ; print i, STATS_median, STATS_mean , STATS_stddev # ... } set print plot "StatDat.dat" us 1:2 # or whatever column you want... It would be useful to include the reported column header, something like: print STATS_columnheader, STATS_median, STATS_mean , STATS_stddev # ... However gnuplot does not provide the required STATS_columnheader variable. STATS_columnheader Is there an alternative way to achieve this ? 1 Answer 1 You can use an external tool suc...