before I ask the question, I just want to say that I have looked every thread in here and I tried every trick in the book, but the problem remains,its due to the fact that I have 75 attributes of my variable CODEETAB
(the school id) that I am trying to display in the boxplot
, it's rendering the visualisation of my plot extremely difficult,
I tried to flip it coord_flip
and change the increase the widths
with this code :
ggplot(epl_data, aes(x=CODEETAB, y=moy_exam2, fill=factor(SEXE))) +
geom_boxplot(widths=1)+ coord_flip(expand = TRUE, clip = "on")
but as you can see
is there any why I could zoom in on it ?
thanks