我得到了这个情节
使用以下代码
library(dplyr)
library(ggplot2)
library(ggpmisc)
df <- diamonds %>%
dplyr::filter(cut%in%c("Fair","Ideal")) %>%
dplyr::filter(clarity%in%c("I1" , "SI2" , "SI1" , "VS2" , "VS1", "VVS2")) %>%
dplyr::mutate(new_price = ifelse(cut == "Fair",
price* 0.5,
price * 1.1))
formula <- y ~ x
ggplot(df, aes(x= new_price, y= carat, color = cut)) +
geom_point(alpha = 0.3) +
facet_wrap(~clarity, scales = "free_y") +
geom_smooth(method = "lm", formula = formula, se = F) +
stat_poly_eq(aes(label = paste(..rr.label..)),
label.x.npc = "right", label.y.npc = 0.15,
formula = formula, parse = TRUE, size = 3)
除了R2之外,我还希望将p值添加到facet。我可以手动执行此操作,首先运行回归,然后获取p值并使用geom_text()
添加这些p值similar to the answer of this question.
有没有更快或更自动化的方法呢?例如类似于添加R2值的方式。
更新
我所说的p值是斜率p值。当 p <1时,趋势被认为具有高度统计学意义。 0.005
答案 0 :(得分:15)
使用stat_fit_glance
作为R中ggpmisc
包的一部分。此包是ggplot2
的扩展,因此它可以很好地使用它。
ggplot(df, aes(x= new_price, y= carat, color = cut)) +
geom_point(alpha = 0.3) +
facet_wrap(~clarity, scales = "free_y") +
geom_smooth(method = "lm", formula = formula, se = F) +
stat_poly_eq(aes(label = paste(..rr.label..)),
label.x.npc = "right", label.y.npc = 0.15,
formula = formula, parse = TRUE, size = 3)+
stat_fit_glance(method = 'lm',
method.args = list(formula = formula),
geom = 'text',
aes(label = paste("P-value = ", signif(..p.value.., digits = 4), sep = "")),
label.x.npc = 'right', label.y.npc = 0.35, size = 3)
stat_fit_glance
基本上会在R中通过lm()
传递任何内容,并允许使用ggplot2
进行处理和打印。用户指南包含stat_fit_glance
:https://cran.r-project.org/web/packages/ggpmisc/vignettes/user-guide.html等一些功能的概要。另外我认为这给出了模型p值,而不是斜率p值(通常),这对于多元线性回归是不同的。对于简单的线性回归,它们应该是相同的。
这是情节: