I am trying to find a suitable show to illustrate various properties within and between school classes. For each class, there are only 15-30 data points (students).
Right now I am leaning towards a flatboard box showing only 1., 2. and 3. quartile + data, more than, for example, 1 population of SD +/- exemplary median.
I can do it.
However - I need to show this chart to some teachers in order to evaluate what they like best. I would like to compare my schedule with a regular box. But the normal boxplot looks the same if there is only one outlier or, for example, 5 outliers with the same value. In this case, it will unlock the deal.
eg.
test <-structure(list(value = c(3, 5, 3, 3, 6, 4, 5, 4, 6, 4, 6, 4, 4, 6, 5, 3, 3, 4, 4, 4, 3, 4, 4, 4, 3, 4, 5, 6, 6, 4, 3, 5, 4, 6, 5, 6, 4, 5, 5, 3, 4, 4, 6, 4, 4, 5, 5, 3, 4, 5, 8, 8, 8, 8, 9, 6, 6, 7, 6, 9), places = structure(c(1L, 2L, 1L, 1L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 2L, 2L, 2L, 2L, 1L, 1L, 2L, 2L, 2L, 1L, 2L, 1L, 1L, 1L, 1L, 2L, 1L, 2L, 1L, 2L, 2L, 2L, 1L, 2L, 1L, 2L, 2L, 1L, 1L, 2L, 2L, 1L, 1L, 1L, 1L, 2L, 1L, 1L, 2L, 2L, 2L, 1L, 1L, 2L, 2L, 1L, 2L, 1L), .Label = c("a", "b"), class = "factor")), .Names = c("value", "places"), row.names = c(NA, -60L), class = "data.frame") ggplot(test, aes(x=places,y=value))+geom_boxplot()
There are two outliers (βaβ, 9), but only one βpointβ is displayed.
So my question is: how to shake emissions. And - what display would you suggest for this kind of data?