|
From:
<br...@ph...> - 2006-02-28 13:53:15
|
Daniel Graupner wrote: > my plot is: > plot "file1" using 3 "BHR %lf %lf %lf %lf %lf", \ > "file 2" using 3 "BHR %lf %lf %lf %lf %lf" > > The third column are percentages, they sum up to 100. As keys for the > different colors I want the first column. Labeling the x-Axis is no > problem (took it from the examples), but how can I specifi the first > column as key description? As long as you keep using a scanf() format string, I suspect you can't, because among other effects, that introduces a difference between the column number counts you have in "using", those in the actual file. In a nutshell, that scanf format strips the first column out of your file. |