13

我想在 gnuplot 的直方图中添加一条水平线,这可能吗?

我的直方图在 x 轴上有:alea1 alea 2 alea3 nalea1 nalea 2 nalea 3,y 轴从 0 到 25。

在 22 处,我想添加一条水平线,从直方图的一端一直延伸到另一端。

4

2 回答 2

15

尝试添加

, 22 title ""

在你的情节命令结束时。适用于我的测试数据(文件“histo”):

# Year  Red   Green  Blue
1990    33    45     18
1991    35    42     19
1992    34    44     14
1993    37    43     25
1994    47    15     30
1995    41    14     32
1996    42    20     35
1997    39    21     31

plot "histo" u 2 t "Red" w histograms, "" u 3 t "Green" w histograms, "" u 4 t "Blue" w histograms, 22 title ""

(取自 Philip K. Janert,Gnuplot in Action)

于 2012-11-21T17:00:27.953 回答
13

添加水平和/或垂直线的典型方法是使用arrow

set arrow from x1,y1 to x2,y2 nohead linestyle ...

对于水平线,y1 和 y2 将相同。从你的问题来看,我有点不确定你所说的“22 岁”是什么意思,但我猜你的意思是你想在y=22直方图的顶部绘制这条线。如果是这种情况,请尝试此操作(在您的plot命令之前)。

set arrow from graph 0,first 22 to graph 1,first 22 nohead lc rgb "#000000" front
于 2012-11-21T17:41:14.617 回答