在R中的ggplot中设置outlier.color = NA有什么用?

时间:2018-03-12 13:50:58

标签: r ggplot2

使用下面的语句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)

1 个答案:

答案 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)
     

     

1http://ggplot2.tidyverse.org/reference/geom_boxplot.html#examples

将颜色设置为NA有效地使它们透明。

p + geom_boxplot(outlier.colour = NA)

enter image description here