gpt4 book ai didi

plot - Gnuplot:如何只绘制没有刻度标签的 xtics

转载 作者:行者123 更新时间:2023-12-05 00:25:04 71 4
gpt4 key购买 nike

我想在顶部绘制 xtics 但没有其 tic 标签:

这就是我要的:

enter image description here

这是我试过的代码:

set xtics mirror;
set border 2+4;
plot x;

这给了我:

enter image description here

如何修改脚本以获得我想要的?

最佳答案

您可以使用 set format x '' 删除刻度标签,但这仍然使 xtics 处于底部。

在我看来,最好的方法是只使用 x2 轴

set ytics nomirror
unset xtics
set x2tics nomirror
set format x2 ''
set border 2+4
plot x axes x2y1

enter image description here

关于plot - Gnuplot:如何只绘制没有刻度标签的 xtics,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25122551/

71 4 0