用法:
Series.autocorr(lag=1)
计算lag-N 自相关。
此方法计算 Series 与其移位的自身之间的 Pearson 相关性。
- lag:整数,默认 1
在执行自相关之前应用的滞后数。
- 浮点数
self 和 self.shift(lag) 之间的 Pearson 相关性。
参数:
返回:
注意:
如果 Pearson 相关性没有明确定义,则返回“NaN”。
例子:
>>> s = pd.Series([0.25, 0.5, 0.2, -0.05]) >>> s.autocorr() 0.10355... >>> s.autocorr(lag=2) -0.99999...
如果 Pearson 相关性没有明确定义,则返回“NaN”。
>>> s = pd.Series([1, 0, 0, 0]) >>> s.autocorr() nan
相关用法
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.apply用法及代码示例
- Python pandas.Series.append用法及代码示例
- Python pandas.Series.at_time用法及代码示例
- Python pandas.Series.array用法及代码示例
- Python pandas.Series.argmin用法及代码示例
- Python pandas.Series.abs用法及代码示例
- Python pandas.Series.asfreq用法及代码示例
- Python pandas.Series.asof用法及代码示例
- Python pandas.Series.agg用法及代码示例
- Python pandas.Series.at用法及代码示例
- Python pandas.Series.all用法及代码示例
- Python pandas.Series.add用法及代码示例
- Python pandas.Series.add_suffix用法及代码示例
- Python pandas.Series.argmax用法及代码示例
- Python pandas.Series.align用法及代码示例
- Python pandas.Series.aggregate用法及代码示例
- Python pandas.Series.any用法及代码示例
- Python pandas.Series.astype用法及代码示例
- Python pandas.Series.map用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.autocorr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。