I have a box-plot of certain variables. I see the box plots of a number of days on x-axis (Sunday, Monday, Wednesday, Thursday and Friday). I would like to know how to remove two of the box plots from the graph. To be specific, I don't want there to be a box plot of Monday and Wednesday. The code I used was:
ggplot(contents2019, aes(x = days, y = time)) +
geom_boxplot() +
xlab("Day") +
ylab("Time") +
theme_bw()