xorbits.pandas.Series.to_list#

Series.to_list()#

Return a list of the values.

These are each a scalar type, which is a Python scalar (for str, int, float) or a pandas scalar (for Timestamp/Timedelta/Interval/Period)

Return type

list

See also

numpy.ndarray.tolist

Return the array as an a.ndim-levels deep nested list of Python scalars.

Warning

This method has not been implemented yet. Xorbits will try to execute it with pandas.

This docstring was copied from pandas.core.series.Series.