The following produces a simple box plot:
import matplotlib.pyplot as plt
bp = plt.boxplot(range(10), whis=[2.2, 97.8])
My question is , is it possible to switch the end of the "boxes" from Q1 and Q3 (25th and 75th percentile) , to be sigma -1 and sigma 1 (~ 16% and 84%) ?
I've experimented with the whis argument which gets me 2 sigmas (what I want), and have a feeling that maybe with the "notch" or "bootstrap" args it's possible to switch the boxes as well?