Function
ecdf
(
x: ArrayLike,
weights: ArrayLike | None = None,
*,
complementary: bool = False,
orientation: Literal["vertical", "horizontal"] = "vertical",
compress: bool = False,
data: DataParamType = None,
**kwargs,
)
Source from the content-addressed store, hash-verified
| 3391 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 3392 | @_copy_docstring_and_deprecators(Axes.ecdf) |
| 3393 | def ecdf( |
| 3394 | x: ArrayLike, |
| 3395 | weights: ArrayLike | None = None, |
| 3396 | *, |
| 3397 | complementary: bool = False, |
| 3398 | orientation: Literal["vertical", "horizontal"] = "vertical", |
| 3399 | compress: bool = False, |
| 3400 | data: DataParamType = None, |
| 3401 | **kwargs, |
| 3402 | ) -> Line2D: |
| 3403 | return gca().ecdf( |
| 3404 | x, |
| 3405 | weights=weights, |
| 3406 | complementary=complementary, |
| 3407 | orientation=orientation, |
| 3408 | compress=compress, |
| 3409 | **({"data": data} if data is not None else {}), |
| 3410 | **kwargs, |
| 3411 | ) |
| 3412 | |
| 3413 | |
| 3414 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…