How to zoom into the boxplot with out loosing values. For ex: my y-axis has 1 to 1000 values. I am using xlim=c(0,100)
to zoom in. But I am loosing all the values more than 100 and it is effecting my box plot distribution. Is it possible to keep the same boxplot after zooming ?
This is the command I am using
qplot(type, count, fill=atin, data=a, geom="boxplot", ylim=c(0,100))