How can I adjust my Y axis in order to ignore outliers, like in this post, but in a more challenging case where I have 4 boxplots and a "free faceting" layout?
p <- ggplot(molten.DF,aes(x=class,y=SOC,fill=class)) + geom_boxplot() + facet_grid(layer~.,scales="free",space="free")
As you can see on my figure, considering outliers in the Y axis range make the boxes more difficult to read. No importance if some outliers are still visible in the result, but I would like to really focus on the boxes!