用法:
Series.diff(periods=1)
計算數組中位置 i 和 i - N 的值之間的差異,並將輸出存儲在新數組中。
- Series
係列的第一個區別。
返回:
注意:
Diff 目前僅支持沒有空值的浮點和整數 dtype 列。
例子:
>>> import cudf >>> series = cudf.Series([1, 1, 2, 3, 5, 8]) >>> series 0 1 1 1 2 2 3 3 4 5 5 8 dtype: int64
與上一行的區別
>>> series.diff() 0 <NA> 1 0 2 1 3 1 4 2 5 3 dtype: int64
與前三行的區別
>>> series.diff(periods=3) 0 <NA> 1 <NA> 2 <NA> 3 2 4 4 5 6 dtype: int64
與下一行的區別
>>> series.diff(periods=-1) 0 0 1 -1 2 -1 3 -2 4 -3 5 <NA> dtype: int64
相關用法
- Python cudf.Series.div用法及代碼示例
- Python cudf.Series.digitize用法及代碼示例
- Python cudf.Series.divide用法及代碼示例
- Python cudf.Series.data用法及代碼示例
- Python cudf.Series.dt用法及代碼示例
- Python cudf.Series.drop_duplicates用法及代碼示例
- Python cudf.Series.dropna用法及代碼示例
- Python cudf.Series.drop用法及代碼示例
- Python cudf.Series.dot用法及代碼示例
- Python cudf.Series.describe用法及代碼示例
- 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用法及代碼示例
- Python cudf.Series.nlargest用法及代碼示例
- Python cudf.Series.to_frame用法及代碼示例
- Python cudf.Series.mask用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.diff。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。