基于在 图上添加回归线方程和 R2的示例,我正在努力将我的模型的回归线方程包含在每个方面。但是,我不明白为什么要改变我的 x 轴的限制。
library(ggplot2)
library(reshape2)
df <- data.frame(year = seq(1979,2010), M02 = runif(32,-4,6),
M06 = runif(32, -2.4, 5.1), M07 = runif(32, -2, 7.1))
df <- melt(df, id = c("year"))
ggplot(data = df, mapping = aes(x = year, y = value)) +
geom_point() +
scale_x_continuous() +
stat_smooth_func(geom = 'text', method = 'lm', hjust = 0, parse = T) +
geom_smooth(method = 'lm', se = T) +
facet_wrap(~ variable) # as you can see, the scale_x_axis goes back to 1800
如果我在 x 上包括限制,
scale_x_continuous(limits = c(1979,2010))
它不再显示回归系数。我在这里做错了什么?
stat_smooth_func 可在此处获得: https ://gist.github.com/kdauria/524eade46135f6348140