这应该可以解决问题(或其某些变体):
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...
.