I want to use key titles like "Best F" "Worst F" for a gnuplot 4.4 graph, when reading the data from a file, but I can't figure out how to put the space, e.g.:
Generation Best_F Worst_F Average_F
5 4 9 5
4 3 9 4
I tried writing in the file "Best F", "Best%20F" "Best\ F" but they get split, when read as column headers, or I get the ugly looking "%20".
plot for[col=2:4] data.dat using 1:col title columnheader(col)
Or is there a way to do a character substitution, like "Best_F"%" "->"Best F"? replace("_", "\ ", columheader(col))?
I am using terminals wxt and pngcairo (no latex). Thanks

plot x title "Best F". – andyras Feb 22 at 1:05