Outliers in my data are sometimes of such a high value that the actual box and whiskers get compressed to, nearly, a flat line (see attachment).
It seems Stata allows scaling of the axis only to expand it to a range outside the data range. For instance, below code has no effect:
Is there any other way to clip the y axis in such a way that the box plot would be more nicely visible?
It seems Stata allows scaling of the axis only to expand it to a range outside the data range. For instance, below code has no effect:
HTML Code:
graph box Wind05 if Wind05 != 1, yscale(range(0 5))
Comment