Is there an easy way to make BoxWhiskerChart show both the outliers and the median line? g1 below shows outliers but not the median line, and g2 shows the median line but not the outliers.
data = RandomReal[NormalDistribution[0, 1], 100]; g1 = BoxWhiskerChart[data, "Outliers"] g2 = BoxWhiskerChart[data] That is, can BoxWhiskerChart make a boxplot in the style of BoxWhiskerPlot?
Needs["StatisticalPlots`"] data = RandomVariate[StudentTDistribution[5], 100]; BoxWhiskerPlot[data, BoxOutliers -> Automatic] Thanks!
