如何在框图中调整y轴的大小而又不增加ggplot中的误差?

时间:2019-01-08 19:33:36

标签: r ggplot2 boxplot outliers yaxis

我可以在baseR中创建一个简单的箱线图:在此示例中,箱线图表示由查询(query)解释的计数number(n):

boxplot(tmp$n ~ tmp$query)

enter image description here

有时我们不想显示异常值,该代码很简单,并且会自动调整y轴的大小。

boxplot(tmp$n ~ tmp$query, outline = FALSE)

enter image description here

但是,在ggplot中:具有离群值

tmp %>% ggplot(aes(x = query, y = n)) + geom_boxplot() 

enter image description here

尽管代码未显示异常值,但y轴不变。有什么建议吗?

tmp %>% ggplot(aes(x = query, y = n)) + geom_boxplot(outlier.shape = NA)

enter image description here

0 个答案:

没有答案