|
From: <HBB...@t-...> - 2007-04-26 06:50:39
|
Thomas Steinbrecher wrote: > set bars 0 > plot 'data.dat' w yerrorlines > > however, while the horizontal bars at the end of each errorbar are gone, > and the datapoints are connected by a line, there is still a horizontal > bar in the middle of each errorbar. That's not really a bar. It's the horizontal part of the point symbol that gnuplot puts in the middle of an errorbar. You'll see it more easily if you change your plot command to: plot x, 'data.dat' w yerrorlines If you don't want that, you can change the point symbol to a dot: plot 'data.dat' with yerrorlines pointtype -1 |