|
From: Hans-Bernhard B. <HBB...@t-...> - 2012-04-27 21:58:39
|
On 27.04.2012 16:14, agoniabogar wrote: > 20.04.2012 15:28 27 25 24.2 0.22 > set xdata time > set timefmt x "%d.%m.%Y %H:%M" > p "blabla.txt" u 1:2 You almost certainly don't want to use column 2 in that specification --- that's the one holding the time, because you have a blank in your timefmt. You want plot "blabla.txt" u 1:3 instead. |