pandas.plotting.lag_plot#

pandas.plotting.lag_plot(series, lag=1, ax=None, **kwds)[源代码][源代码]#

时间序列的滞后图。

参数:
系列系列

要可视化的时间序列。

lagint, 默认 1

散点图的滞后长度。

axMatplotlib 轴对象,可选

要使用的 matplotlib 轴对象。

**kwds

Matplotlib scatter 方法关键字参数。

返回:
matplotlib.axes.Axes

示例

滞后图最常用于查找时间序列数据中的模式。

给定以下时间序列

>>> np.random.seed(5)
>>> x = np.cumsum(np.random.normal(loc=1, scale=5, size=50))
>>> s = pd.Series(x)
>>> s.plot()  
../../_images/pandas-plotting-lag_plot-1.png

一个 lag=1 的滞后图返回

>>> pd.plotting.lag_plot(s, lag=1)
<Axes: xlabel='y(t)', ylabel='y(t + 1)'>
../../_images/pandas-plotting-lag_plot-2.png