UvContinuous
UvContinuous()Base class for univariate continuous distributions.
Methods
| Name | Description |
|---|---|
| plot | Plot the CDF with a low-alpha PDF fill on a secondary axis. |
plot
UvContinuous.plot(
ax=None,
*,
n=500,
show=False,
cdf_kwargs=None,
pdf_kwargs=None,
percentile_guides=True,
percentiles=DEFAULT_PERCENTILES,
percentile_guide_kwargs=None,
**kwargs,
)Plot the CDF with a low-alpha PDF fill on a secondary axis.
Returns the primary Matplotlib Axes object. Importing Matplotlib is deferred so non-plotting use stays lightweight. Extra keyword arguments are passed to the CDF line for convenient calls like dist.plot(color="steelblue").