Ggplot2 xlim function

How to zoom in a lossy window. For ex: my y-axis has between 1 and 1000 values. I am using xlim=c(0,100)

to magnify. But I am losing all values ​​over 100 and it affects the distribution of the boxes. Is it possible to keep the same rectangle after scaling?

This is the command I am using

qplot(type, count, fill=atin, data=a, geom="boxplot", ylim=c(0,100))

      

+3


source to share





All Articles