|
From:
<br...@ph...> - 2006-03-27 19:45:33
|
Shanks N wrote: > plot "time.dat" using 1:2:3 with errorbars > plot "time.dat" using 1:2:3 with errorlines Something like this might work: set xdata time ; set timedata x "%d-%m-%Y" set ydata time ; set timedata y "%H:%M" p 'time.dat' u 1:2:2:3 w err Since you have ylow and yhigh instead of ydelta, you need 4 using specs for errorbars. |