用法:
Series.autocorr(lag=1)
计算lag-N 自相关。此方法计算 Series 与其移位的自身之间的 Pearson 相关性。
- lag:整数,默认 1
在执行自相关之前应用的滞后数。
- result:浮点数
self 和 self.shift(lag) 之间的 Pearson 相关性。
参数:
返回:
例子:
>>> import cudf >>> s = cudf.Series([0.25, 0.5, 0.2, -0.05, 0.17]) >>> s.autocorr() 0.1438853844... >>> s.autocorr(lag=2) -0.9647548490...
相关用法
- Python cudf.Series.add用法及代码示例
- Python cudf.Series.apply用法及代码示例
- Python cudf.Series.all用法及代码示例
- Python cudf.Series.acos用法及代码示例
- Python cudf.Series.append用法及代码示例
- Python cudf.Series.as_mask用法及代码示例
- Python cudf.Series.any用法及代码示例
- Python cudf.Series.asin用法及代码示例
- Python cudf.Series.applymap用法及代码示例
- Python cudf.Series.astype用法及代码示例
- Python cudf.Series.argsort用法及代码示例
- Python cudf.Series.abs用法及代码示例
- Python cudf.Series.atan用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.autocorr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。