Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gpuCI] Forward-merge branch-22.10 to branch-22.12 [skip gpuci] #11775

Merged
merged 1 commit into from
Sep 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/cudf/source/api_docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ This page provides a list of all publicly accessible modules, methods and classe
io
subword_tokenize
string_handling
list_handling
struct_handling
options
21 changes: 21 additions & 0 deletions docs/cudf/source/api_docs/list_handling.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
List handling
~~~~~~~~~~~~~

``Series.list`` can be used to access the values of the series as
lists and apply list methods to it. These can be accessed like
``Series.list.<function/property>``.

.. currentmodule:: cudf.core.column.lists.ListMethods
.. autosummary::
:toctree: api/

astype
concat
contains
index
get
leaves
len
sort_values
take
unique
58 changes: 14 additions & 44 deletions docs/cudf/source/api_docs/series.rst
Original file line number Diff line number Diff line change
Expand Up @@ -310,21 +310,6 @@ Timedelta properties
.. include:: string_handling.rst


..
The following is needed to ensure the generated pages are created with the
correct template (otherwise they would be created in the Series/Index class page)

..
.. currentmodule:: cudf
.. autosummary::
:toctree: api/
:template: autosummary/accessor.rst

Series.str
Series.cat
Series.dt
Index.str

.. _api.series.cat:

Categorical accessor
Expand All @@ -349,42 +334,27 @@ the ``Series.cat`` accessor.


.. _api.series.list:

List handling
~~~~~~~~~~~~~

``Series.list`` can be used to access the values of the series as
lists and apply list methods to it. These can be accessed like
``Series.list.<function/property>``.

.. currentmodule:: cudf.core.column.lists.ListMethods
.. autosummary::
:toctree: api/

concat
contains
get
len
sort_values
take
unique
.. include:: list_handling.rst


.. _api.series.struct:
.. include:: struct_handling.rst

Struct handling
~~~~~~~~~~~~~~~

``Series.struct`` can be used to access the values of the series as
Structs and apply struct methods to it. These can be accessed like
``Series.struct.<function/property>``.
..
The following is needed to ensure the generated pages are created with the
correct template (otherwise they would be created in the Series/Index class page)

.. currentmodule:: cudf.core.column.struct.StructMethods
.. autosummary::
:toctree: api/
..
.. currentmodule:: cudf
.. autosummary::
:toctree: api/
:template: autosummary/accessor.rst

field
explode
Series.str
Series.cat
Series.dt
Index.str


Serialization / IO / conversion
Expand Down
13 changes: 13 additions & 0 deletions docs/cudf/source/api_docs/struct_handling.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Struct handling
~~~~~~~~~~~~~~~

``Series.struct`` can be used to access the values of the series as
Structs and apply struct methods to it. These can be accessed like
``Series.struct.<function/property>``.

.. currentmodule:: cudf.core.column.struct.StructMethods
.. autosummary::
:toctree: api/

field
explode