用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。