Hi,
I am trying to create a series of box plots for a set of data, but am running into some issues. What I want to do is include extreme outliers in the calculation for my boxplot (e.g. so they are included in the calculation of Q1, median, Q3, etc.) but I don't want outliers above a certain range displayed on my graph. The reasoning behind this is some outliers are so extreme that it makes it impossible to see the actual box plot.
The current code I am using to generate my boxplot is:
And the outputted graph I am getting from this code is:

So what I would like to do is limit the maximum value displayed on the y-axis to 100000 (as I attempted to do with ylabel).
Thanks so much in advance,
Stephanie
I am trying to create a series of box plots for a set of data, but am running into some issues. What I want to do is include extreme outliers in the calculation for my boxplot (e.g. so they are included in the calculation of Q1, median, Q3, etc.) but I don't want outliers above a certain range displayed on my graph. The reasoning behind this is some outliers are so extreme that it makes it impossible to see the actual box plot.
The current code I am using to generate my boxplot is:
Code:
graph box Outdoor Indoor, ylabel(0[20000]100000)
So what I would like to do is limit the maximum value displayed on the y-axis to 100000 (as I attempted to do with ylabel).
Thanks so much in advance,
Stephanie
Comment