使用下面的语句outlier.color = NA ??它是从boxplot视图中删除异常值吗?
f<- ggplot(data= Fin, aes(x=Industry,y=Growth,colour=Industry))
f + geom_jitter() + geom_boxplot(size=2,alpha=0.5,outlier.color = NA)
答案 0 :(得分:0)
outlier.color
会覆盖用于离群点的默认美学。
p <- ggplot(mpg, aes(class, hwy)) # By default, outlier points match the colour of the box. Use # outlier.colour to override p + geom_boxplot(outlier.colour = "red", outlier.shape = 1)
1:http://ggplot2.tidyverse.org/reference/geom_boxplot.html#examples
将颜色设置为NA
有效地使它们透明。
p + geom_boxplot(outlier.colour = NA)