使用多个图形ggplot2将R视口中的标题居中
我有一个视口,其中有两个以从左到右的方式绘制的图表。我试图在视口中居中的两个图表上显示一个标题。这可能吗?抱歉,由于我的菜鸟身份,没有图片,并且由于我的工作环境,我无法发布代码。
I have a viewport with two graphs drawn in a left to right fashion. I'm trying to have a single title appear over both of the graphs centered in the viewport. Is this possible? Sorry, no pic because of my noob status and I can't post the code because of my work environment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想您可能对 gridExtra 包感兴趣,它提供了
grid .arrange()
函数可以满足您想知道的一切。以 @Kevin 的例子来说,命令是
I think you might be interested in the gridExtra package, which provides the
grid.arrange()
function that fulfills everything you wonder about.With @Kevin's example, the command would be
我在 ggplot2 邮件列表的这篇文章中使用了几乎未修改的代码版本 将主标题和副标题放在图矩阵的上方和下方。感谢巴蒂斯特·奥吉耶。
生成:
I have been using an almost unmodified version of code in this post to the ggplot2 mailing list to put a main title and subtitle above and below a matrix of plots. Credit to Baptiste Auguié.
Produces:
另一种可能性,这是通过创建空白图来作弊...
Another Possibility, it's kind of cheating by way of creating a blank plot...