使用ggplot标记/注释极值的最简洁方法是什么?

Mit*_*ops 2 annotations r ggplot2

我想使用ggplot2注释所有大于y阈值的y值.

当您plot(lm(y~x))使用基础包时,自动弹出的第二个图是Residuals vs Fitted,第三个是qqplot,第四个是Scale-location.通过将相应的X值列为相邻注释,每个值都会自动标记您的极端Y值.我正在寻找这样的东西.

使用ggplot2实现此基本默认行为的最佳方法是什么?

San*_*att 7

更新 scale_size_area()代替scale_area()

您可以从中获取一些东西以满足您的需求.

library(ggplot2)

#Some data
df <- data.frame(x = round(runif(100), 2), y = round(runif(100), 2))

m1 <- lm(y ~ x, data = df)
df.fortified = fortify(m1)

names(df.fortified)   # Names for the variables containing residuals and derived qquantities

# Select extreme values
df.fortified$extreme = ifelse(abs(df.fortified$`.stdresid`) > 1.5, 1, 0)

# Based on examples on page 173 in Wickham's ggplot2 book
plot = ggplot(data = df.fortified, aes(x = x, y = .stdresid)) +
 geom_point() +
 geom_text(data = df.fortified[df.fortified$extreme == 1, ], 
   aes(label = x, x = x, y = .stdresid), size = 3, hjust = -.3)
plot

plot1 = ggplot(data = df.fortified, aes(x = .fitted, y = .resid)) +
   geom_point() + geom_smooth(se = F)

plot2 = ggplot(data = df.fortified, aes(x = .fitted, y = .resid, size = .cooksd)) +
   geom_point() + scale_size_area("Cook's distance") + geom_smooth(se = FALSE, show_guide = FALSE)

library(gridExtra)
grid.arrange(plot1, plot2)
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

在此输入图像描述