底部有多个轴
我试图在 R 中的绘图的底部 x 轴下方放置一个轴。目前,我有一个轴,如下所示:
axis(side=1, col="blue")
现在我想在该轴下方添加另一个具有不同值的轴。我该怎么做?
I'm trying to place an axis below the bottom x-axis on my plot in R. Currently, I have an axis as follows:
axis(side=1, col="blue")
Now I want to add another axis below that one, with different values. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为这就是您正在寻找的:
这里的关键是
axis
线。at
指示要放置标签的刻度标记,label
指示如何称呼该刻度标记。I think this is what you are looking for:
The key here is the
axis
line. Theat
indicates which tic mark to place the label and thelabel
says what to call that tic mark.这是一种快速但肮脏的方法,可以在实际 x 轴下方放置一个假的“第二个 x 轴”。我没有在这里展示它,但您可以使用layout()来更好地控制间距。
Here's a quick and dirty way to slap a fake "second x-axis" below the actual x-axis. I didn't show it here, but you can use layout() to get more control on the spacing.
我看到问题解决了。我将向您展示我的示例,该示例有效。
I saw that the problem was solved. I will show you my example, which works.