在R中旋转twoord.plot的X轴标签
我正在使用 plotrix 包中的 twoord.plot
函数并且需要将 X 轴刻度标签旋转 45 度。有人知道该怎么做吗?
I am using the twoord.plot
function in the plotrix package and need to rotate the X Axis tick labels 45 degrees. Anyone know how to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要取消通常的标签,并将所需的标签放入
text(..., srt=45)
中。由于默认情况下文本仅出现在绘图区域中,因此y
参数可能需要为负数,并且您需要通过将第三个参数“降低”为usr
来扩展绘图区域代码>.这就是 R-FAQ 中有描述。You need to suppress the usual labeling and put your desired labeling in with
text(..., srt=45)
. Since by default text only goes in the plot region, they
argument may need to be negative, and you will need to extend the plotting region by "lowering" the third argument tousr
. This is all described in the R-FAQ.