【发布时间】:2022-01-07 02:23:33
【问题描述】:
mtext("Females", outer=TRUE)
我想将外部标题设为粗体,但无法为其添加粗体层。请帮忙
【问题讨论】:
标签: r plot aesthetics
mtext("Females", outer=TRUE)
我想将外部标题设为粗体,但无法为其添加粗体层。请帮忙
【问题讨论】:
标签: r plot aesthetics
点赞this:
x11()
par(oma = c(0, 0, 2, 0))
plot(1)
mtext("bla", outer = T, font = 2) # font = 2 <- bold
【讨论】: