如何在 R 中添加副标题并更改 ggplot 图的字体大小?
我尝试使用 +opts(subtitle="text") 添加字幕,但没有显示任何内容。主标题确实有效(+opts(title="text")
)。
我还想为轴(标签和坐标)使用更大的字体,但我不知道该怎么做。
I tried adding a subtitle using +opts(subtitle="text")
but nothing showed up. The main title does work (+opts(title="text")
).
I would also like to use a larger font for the axis (labels and coordinates), but I can't tell how to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
theme_get()
将向您显示可以在opts()
中使用的“隐藏”选项,0.91 后它是theme()
当前:
0.91 之前:
将尺寸更改为您想要的尺寸。
对于标题,您可以使用“\n”将剩余文本移动到新行:
当前:
0.91 之前:
ggplot2 没有“副标题”功能。但是您可以在任何标签中使用 \n 术语来下拉一行。
theme_get()
will show you the "hidden" options that you can use inopts()
, post 0.91 it'stheme()
Current:
Pre 0.91:
Change size, to your desired size.
wrt the title, you can use "\n" to move the remaining text to a new line:
Current:
Pre 0.91:
ggplot2 doesn't have "subtitle" functionality. But you can use the \n term in any of the labels to drop down a line.
更新:ggplot 版本 2.2.0 可以做字幕,如 此博文。
示例:
Update: ggplot version 2.2.0 can do subtitles, as demonstrated e.g. in this blog post.
Example: