cudf.Series.tolist#
- Series.tolist()[source]#
Conversion to host memory lists is currently unsupported
- Raises:
- TypeError
If this method is called
Notes
cuDF currently does not support implicity 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.