cudf.Series.tolist#
- Series.tolist() None [source]#
Conversion to host memory lists is currently unsupported
- Raises:
- TypeError
If this method is called
Notes
cuDF currently does not support implicit conversion from GPU stored series to host stored lists. A TypeError is raised when this method is called. Consider calling .to_arrow().to_pylist() to construct a Python list.