我想通过gnuplot在直方图中绘制两条点线,结果图表不完全是我想要的。实际上,我希望两条点线(粉红色的和浅绿色的)中的点对齐两种类型的柱子的中心,所以浅绿色的保持静止,而粉红色的稍微向右移动,就像黑色的一样画了。
“test.dat”如下:
1 10 15 8 22 2 11 19 7 21 3 9 14 7 19 4 10 21 8 23 5 9 17 9 21
和“plt”文件:
set style data histogram
unset key
set yrange[0:12]
set y2range[0:25]
plot "test.dat" using 2:xticlabel(1) axis x1y1,\
"test.dat" using 3:xticlabel(1) axis x1y2 with linespoints,\
"test.dat" using 4:xticlabel(1) axis x1y1,\
"test.dat" using 5:xticlabel(1) axis x1y2 with linespoints