I have created this plot using the following command:
p_observed <- ggplot(data = Observed, aes(x=Country, y=value)) + geom_boxplot(aes(fill=type),outlier.shape=NA, notch = TRUE)+
scale_fill_manual(values = c("skyblue", "hotpink"))+
scale_color_identity() +
theme(axis.text.x=element_text(angle = 90, hjust = 1, vjust = 0.5)) +
labs(fill="Groups")
p_observed
I want to break or scale the y-axis in such a way that the 4th notch plot (from left) becomes more prominent.
My plot output is like:
And, I am expecting something like this:
Thanks