scipy.stats._result_classes.EmpiricalDistributionFunction.
plot#
- EmpiricalDistributionFunction.plot(ax=None, **matplotlib_kwargs)[源代码]#
绘制经验分布函数
仅当安装了
matplotlib
时可用。- 参数:
- axmatplotlib.axes.Axes
用于绘制图表的 Axes 对象,否则使用当前 Axes。
- **matplotlib_kwargs字典,可选
直接传递给
matplotlib.axes.Axes.step
的关键字参数。除非被覆盖,否则where='post'
。
- 返回:
- lines列表 of
matplotlib.lines.Line2D
表示绘制数据的对象
- lines列表 of