[FEA] DataFrame diff #9604
Labels
feature request
New feature or request
good first issue
Good for newcomers
Python
Affects Python cuDF API.
Milestone
For pandas compatibility, it would be nice to implement
diff
for DataFrames. This is currently implemented with a Numba kernel for Series and with the use ofshift
for Groupby.The DataFrame.diff method calculates the difference of a Dataframe element compared with another element in the Dataframe, treating each column independently.
We should be able to remove the Numba implementation and instead rely on
shift
now that we have this feature.The text was updated successfully, but these errors were encountered: