我有两个列数据:
9 17.52
11 29.77
7 62.75
11 36.15
7 30.46
7 52.5
9 65.26
9 90.05
14 101.87
12 86.88
15 74.78并根据y2的索引将第一列绘制为直方图,根据y1的索引将第二列绘制为直线。有谁有主意吗?
发布于 2011-06-23 14:39:22
也许我没有正确理解你的问题,但你可能正在寻找这样的东西:
set style fill solid border -1
set boxwidth 0.4
plot "Data.dat" u 2 w boxes t "boxes", "" u (column(0)):1 t "lines" w l https://stackoverflow.com/questions/6447754
复制相似问题