格式不适用于箱线图中的奇异点
Formatting not applied to a singular point in boxplot
除了一个点,我图中显示的所有点在颜色、大小和形状方面的格式都正确。我不明白为什么这一点(见图)与其他点不同。我查看了输入数据,没有发现任何异常,我使用相同的代码块制作了类似的图形,但没有发生这种情况。有什么建议吗?
代码如下:
infil = ggplot(soil21, aes(x=Treatment, y=infil, col=Treatment)) +
geom_boxplot(fill='#f3f3f3', color="black")+
geom_jitter(shape=19, size=1.75, position=position_jitter(0.2)) +
scale_color_manual(values=c("#0677B6", "#6AC7FA")) +
ggtitle("Infil") + ylab("Y axis") +
theme(plot.title = element_text(size = 17)) +
theme(legend.position="bottom") +
theme(legend.title=element_blank())
infil
谢谢,这解决了:
This is an outlier added by geom_boxplot. You could remove the outliers by adding e.g. geom_boxplot(..., outlier.shape = NA)
- stefan
除了一个点,我图中显示的所有点在颜色、大小和形状方面的格式都正确。我不明白为什么这一点(见图)与其他点不同。我查看了输入数据,没有发现任何异常,我使用相同的代码块制作了类似的图形,但没有发生这种情况。有什么建议吗?
代码如下:
infil = ggplot(soil21, aes(x=Treatment, y=infil, col=Treatment)) +
geom_boxplot(fill='#f3f3f3', color="black")+
geom_jitter(shape=19, size=1.75, position=position_jitter(0.2)) +
scale_color_manual(values=c("#0677B6", "#6AC7FA")) +
ggtitle("Infil") + ylab("Y axis") +
theme(plot.title = element_text(size = 17)) +
theme(legend.position="bottom") +
theme(legend.title=element_blank())
infil
谢谢,这解决了:
This is an outlier added by geom_boxplot. You could remove the outliers by adding e.g.
geom_boxplot(..., outlier.shape = NA)
- stefan