【发布时间】:2019-03-05 11:42:13
【问题描述】:
如何获得基本 R 绘图标题和副标题以模仿 ggplots?我希望所有内容都左对齐,没有粗体,并且副标题直接位于标题下方。
我还希望在所有内容之间留出更多空间。也许我的换行符\n 'hack' 是完成此任务的最佳方式?
plot(mtcars)
title(main = "I want main title NOT bold and left aligned\n\n",
sub = "Sub title should be under the main title left aligned")
【问题讨论】:
-
也许
help(mtext)会有所帮助
标签: r