4

我正在使用Rggpmisc。想知道如何在回归方程中为 y 加上帽子,或者如何在图形上的回归方程中获得自定义响应和解释变量名称。

library(ggplot2)
library(ggpmisc)

df <- data.frame(x1 = c(1:100))
set.seed(12345)
df$y1 <- 2 + 3 * df$x1 + rnorm(100, sd = 40)

p <- ggplot(data = df, aes(x = x1, y = y1)) +
  geom_smooth(method = "lm", se=FALSE, color="black", formula = y ~ x) +
  stat_poly_eq(formula = y ~ x, 
               aes(label = paste(..eq.label.., ..rr.label.., sep = "~~~")), 
               parse = TRUE) +         
  geom_point()
p

在此处输入图像描述

4

1 回答 1

5

我会关闭y粘贴的默认值并构建您自己的公式。例如

ggplot(data = df, aes(x = x1, y = y1)) +
  geom_smooth(method = "lm", se=FALSE, color="black", formula = y ~ x) +
  stat_poly_eq(formula = y ~ x, eq.with.lhs=FALSE,
      aes(label = paste("hat(italic(y))","~`=`~",..eq.label..,"~~~", ..rr.label.., sep = "")), 
      parse = TRUE) +         
  geom_point()

我们eq.with.lhs=FALSE用来关闭自动包含,y=然后我们paste()把它hat(y)放在前面(用等号)。请注意,格式来自?plotmath帮助页面。

在此处输入图像描述

于 2016-02-23T19:20:47.883 回答