我有存储在发言权p
一个ggplot并希望添加poly_stat_eq
层显示曲线方程。我想改变文本的字号,但我无法找到如何实现一个文档
p +
stat_poly_eq(formula = y ~ x,
aes(label = paste(..eq.label.., ..rr.label.., sep = "~~~")),
label.x = 4, label.y = -5, parse = TRUE)
你可以只设置size = some real number
。在你的情况下,这看起来像
p +
stat_poly_eq(formula = y ~ x,
aes(label = paste(..eq.label.., ..rr.label.., sep = "~~~")),
label.x = 4, label.y = -5, parse = TRUE, size = 2.4)
刚size =
后的数字更改为任何你想要的。该ggpmisc
其他示例页面过目还有一个好去处。你可以发现,here。我希望这有帮助。