Skip to content

Commit

Permalink
Remove change from dask (does not support the plugin)
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jan 23, 2024
1 parent b98203a commit 86ee689
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/dask_cudf/dask_cudf/accessors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021-2024, NVIDIA CORPORATION.
# Copyright (c) 2021, NVIDIA CORPORATION.


class StructMethods:
Expand Down Expand Up @@ -263,6 +263,11 @@ def sort_values(
-------
ListColumn with each list sorted
Notes
-----
Difference from pandas:
* Not supporting: `inplace`, `kind`
Examples
--------
>>> s = cudf.Series([[4, 2, None, 9], [8, 8, 2], [2, 1]])
Expand All @@ -272,11 +277,6 @@ def sort_values(
1 [2.0, 8.0, 8.0]
2 [1.0, 2.0]
dtype: list
.. pandas-compat::
**ListMethods.sort_values**
The `inplace` and `kind` argument is currently unsupported.
"""
return self.d_series.map_partitions(
lambda s: s.list.sort_values(
Expand Down

0 comments on commit 86ee689

Please sign in to comment.