Gnuplot x轴在图表的顶部

时间:2012-06-13 14:20:15

标签: gnuplot

如何让gnuplot在我的图形顶部而不是在底部绘制X轴(带有测量值等)?

THX

1 个答案:

答案 0 :(得分:6)

这应该成功(或其中的一些变体):

set xtics format ""
set x2tics
plot sin(x) axes x2y1

Gnuplot有x1(底部,默认),x2(顶部),y1(左,默认)和y2(右)轴。您需要在plot ... axes <axes>说明符中将两个轴配对在一起 - 先x然后y。您也可以设置范围:set x2range [-30:30],标签(set x2label "foo"),虽然这看起来很像第二个标题......基本上set x...映射到set x2...