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

[REVIEW] Remove cleaned up methods from docs #10189

Merged
merged 2 commits into from
Feb 2, 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
3 changes: 1 addition & 2 deletions docs/cudf/source/api_docs/index_objects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Properties
:toctree: api/

Index.empty
Index.gpu_values
Index.has_duplicates
Index.is_monotonic
Index.is_monotonic_increasing
Expand Down Expand Up @@ -93,9 +92,9 @@ Conversion
:toctree: api/

Index.astype
Index.to_array
Index.to_arrow
Index.to_list
Index.to_numpy
Index.to_series
Index.to_frame
Index.to_pandas
Expand Down
4 changes: 2 additions & 2 deletions docs/cudf/source/api_docs/series.rst
Original file line number Diff line number Diff line change
Expand Up @@ -408,13 +408,13 @@ Serialization / IO / conversion
.. autosummary::
:toctree: api/

Series.to_array
Series.to_arrow
Series.to_cupy
Series.to_dlpack
Series.to_frame
Series.to_gpu_array
Series.to_hdf
Series.to_json
Series.to_numpy
Series.to_pandas
Series.to_string
Series.from_arrow
Expand Down
4 changes: 2 additions & 2 deletions docs/cudf/source/user_guide/10min.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4550,7 +4550,7 @@
}
],
"source": [
"df['a'].to_array()"
"df['a'].to_numpy()"
]
},
{
Expand All @@ -4571,7 +4571,7 @@
}
],
"source": [
"ddf['a'].compute().to_array()"
"ddf['a'].compute().to_numpy()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/column/column.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ def __array__(self, dtype=None):
raise TypeError(
"Implicit conversion to a host NumPy array via __array__ is not "
"allowed. To explicitly construct a host array, consider using "
".to_array()"
".to_numpy()"
)

@property
Expand Down