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