MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / boxplot

Function boxplot

lib/matplotlib/pyplot.py:3201–3265  ·  view source on GitHub ↗
(
    x: ArrayLike | Sequence[ArrayLike],
    notch: bool | None = None,
    sym: str | None = None,
    vert: bool | None = None,
    orientation: Literal["vertical", "horizontal"] = "vertical",
    whis: float | tuple[float, float] | None = None,
    positions: ArrayLike | None = None,
    widths: float | ArrayLike | None = None,
    patch_artist: bool | None = None,
    bootstrap: int | None = None,
    usermedians: ArrayLike | None = None,
    conf_intervals: ArrayLike | None = None,
    meanline: bool | None = None,
    showmeans: bool | None = None,
    showcaps: bool | None = None,
    showbox: bool | None = None,
    showfliers: bool | None = None,
    boxprops: dict[str, Any] | None = None,
    tick_labels: Sequence[str] | None = None,
    flierprops: dict[str, Any] | None = None,
    medianprops: dict[str, Any] | None = None,
    meanprops: dict[str, Any] | None = None,
    capprops: dict[str, Any] | None = None,
    whiskerprops: dict[str, Any] | None = None,
    manage_ticks: bool = True,
    autorange: bool = False,
    zorder: float | None = None,
    capwidths: float | ArrayLike | None = None,
    label: Sequence[str] | None = None,
    *,
    data: DataParamType = None,
)

Source from the content-addressed store, hash-verified

3199# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
3200@_copy_docstring_and_deprecators(Axes.boxplot)
3201def 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,

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
boxplotMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…