如何GGPLOT2 [R改变stat_poly_eq字体大小

问题描述 投票:0回答:1

我有存储在发言权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) 
r ggplot2 fonts size
1个回答
1
投票

你可以只设置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。我希望这有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.