xyerrorlines
figure_xyerrorlines
xyerrorlines样式仅与 2D 数据绘图相关。xyerrorlines就像linespoints,只不过同时还绘制了一个水平和垂直误差线。在每个点 (x,y),绘制一条从 (xlow,y) 到 (xhigh,y) 和从 (x,ylow) 到 (x,yhigh) 或者从 (x,y-ydelta) 到 (x,y+ydelta) 和从 (x-xdelta,y) 到 (x+xdelta,y) 的线条,具体取决于提供了多少列数据。条的末端的刻度标记的外观由set errorbars控制。基本样式需要 4 或 6 列数据:
4 列: x y xdelta ydelta
6 列: x y xlow xhigh ylow yhigh
如果数据以不受支持的混合形式提供,应该用plot命令的using过滤器来设置适当的形式。例如,如果数据形式为 (x,y,xdelta,ylow,yhigh),则可使用
plot 'data' using 1:2:($1-$3):($1+$3):4:5 with xyerrorlines
额外的输入列 (第 5 或者第 7 列) 用来提供诸如可变(每个点)的颜色信息。