Skip to content

Commit 49ae16e

Browse files
committed
BUG/DOC : fix ciho -> cihi typo
Closes #3775
1 parent edd2a87 commit 49ae16e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3172,7 +3172,7 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
31723172
- ``fliers``: Data beyond the whiskers (sequence of floats).
31733173
Needed if ``showfliers=True``.
31743174
3175-
- ``cilo`` & ``ciho``: Lower and upper confidence intervals
3175+
- ``cilo`` & ``cihi``: Lower and upper confidence intervals
31763176
about the median. Needed if ``shownotches=True``.
31773177
31783178
- ``label``: Name of the dataset (string). If available,

lib/matplotlib/cbook.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1901,7 +1901,7 @@ def boxplot_stats(X, whis=1.5, bootstrap=None, labels=None):
19011901
q1 first quartile (25th percentile)
19021902
q3 third quartile (75th percentile)
19031903
cilo lower notch around the median
1904-
ciho upper notch around the median
1904+
cihi upper notch around the median
19051905
whislo end of the lower whisker
19061906
whishi end of the upper whisker
19071907
fliers outliers
@@ -1983,7 +1983,7 @@ def _compute_conf_interval(data, med, iqr, bootstrap):
19831983
stats['q1'] = np.nan
19841984
stats['q3'] = np.nan
19851985
stats['cilo'] = np.nan
1986-
stats['ciho'] = np.nan
1986+
stats['cihi'] = np.nan
19871987
stats['whislo'] = np.nan
19881988
stats['whishi'] = np.nan
19891989
stats['med'] = np.nan

0 commit comments

Comments
 (0)