| 3199 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 3200 | @_copy_docstring_and_deprecators(Axes.boxplot) |
| 3201 | def boxplot( |
| 3202 | x: ArrayLike | Sequence[ArrayLike], |
| 3203 | notch: bool | None = None, |
| 3204 | sym: str | None = None, |
| 3205 | vert: bool | None = None, |
| 3206 | orientation: Literal["vertical", "horizontal"] = "vertical", |
| 3207 | whis: float | tuple[float, float] | None = None, |
| 3208 | positions: ArrayLike | None = None, |
| 3209 | widths: float | ArrayLike | None = None, |
| 3210 | patch_artist: bool | None = None, |
| 3211 | bootstrap: int | None = None, |
| 3212 | usermedians: ArrayLike | None = None, |
| 3213 | conf_intervals: ArrayLike | None = None, |
| 3214 | meanline: bool | None = None, |
| 3215 | showmeans: bool | None = None, |
| 3216 | showcaps: bool | None = None, |
| 3217 | showbox: bool | None = None, |
| 3218 | showfliers: bool | None = None, |
| 3219 | boxprops: dict[str, Any] | None = None, |
| 3220 | tick_labels: Sequence[str] | None = None, |
| 3221 | flierprops: dict[str, Any] | None = None, |
| 3222 | medianprops: dict[str, Any] | None = None, |
| 3223 | meanprops: dict[str, Any] | None = None, |
| 3224 | capprops: dict[str, Any] | None = None, |
| 3225 | whiskerprops: dict[str, Any] | None = None, |
| 3226 | manage_ticks: bool = True, |
| 3227 | autorange: bool = False, |
| 3228 | zorder: float | None = None, |
| 3229 | capwidths: float | ArrayLike | None = None, |
| 3230 | label: Sequence[str] | None = None, |
| 3231 | *, |
| 3232 | data: DataParamType = None, |
| 3233 | ) -> dict[str, Any]: |
| 3234 | return gca().boxplot( |
| 3235 | x, |
| 3236 | notch=notch, |
| 3237 | sym=sym, |
| 3238 | vert=vert, |
| 3239 | orientation=orientation, |
| 3240 | whis=whis, |
| 3241 | positions=positions, |
| 3242 | widths=widths, |
| 3243 | patch_artist=patch_artist, |
| 3244 | bootstrap=bootstrap, |
| 3245 | usermedians=usermedians, |
| 3246 | conf_intervals=conf_intervals, |
| 3247 | meanline=meanline, |
| 3248 | showmeans=showmeans, |
| 3249 | showcaps=showcaps, |
| 3250 | showbox=showbox, |
| 3251 | showfliers=showfliers, |
| 3252 | boxprops=boxprops, |
| 3253 | tick_labels=tick_labels, |
| 3254 | flierprops=flierprops, |
| 3255 | medianprops=medianprops, |
| 3256 | meanprops=meanprops, |
| 3257 | capprops=capprops, |
| 3258 | whiskerprops=whiskerprops, |