R ggplot geom_jitter duplicates outlier

Q1. I am drawing a dataset using ggplot geom_boxplot. However, when I try to build all the data points using geom_jitter (), the outlier that I have in my data is duplicated. All other data is accurate. What is the problem?

Code example:

PeakPeriod_24h <- c (31.05820, 23.83500, 24.36254, 25.31609, 24.21623, 23.90320) 
condition <- rep("HL",6)
data_HL <- data.frame(condition, PeakPeriod_24h)
p <- ggplot(data_HL, aes(x=condition, y=PeakPeriod_24h, fill=condition))
p + geom_boxplot()+
  geom_jitter(width = 0.3)+
  theme_bw()+
  coord_flip()+
  geom_hline(aes(yintercept=24.18), colour="brown1", linetype="dotted", size = 1.4)+
  scale_y_continuous(limits=c(), name = "Period Length")+
  ggtitle("Boxplots\nHabitual Light")+
  scale_fill_manual(values = c("gray60"))+
  theme(plot.title = element_text(size=14, face="bold", vjust = .5),
    axis.title.y = element_blank(),
    axis.text.y = element_blank(),
    axis.title.x = element_text(size=12, face = "bold"),
    axis.text.x = element_text(size = 10, face = "bold", colour = "gray20"))+
  guides(fill=FALSE)

enter image description here

Thank!

+4
source share
1 answer

Try

ggplot(data_HL, aes(x=condition, y=PeakPeriod_24h, fill=condition)) + 
  geom_boxplot(outlier.shape = NA) +  
  geom_jitter(width = 0.3) 

The outlier doubles because it is displayed on geom_boxplot(unless you specify that you do not want it to display points for outliers), and at another time - geom_jitter.

And for the second question you can use

geom_jitter(width = 0.3, aes(color=I(c("black", "blue")[code+1L]))) 
+4
source

All Articles