bigframes.pandas.Series.to_list#

Series.to_list(*,allow_large_results:bool|None=None)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).

Examples:

>>>s=bpd.Series([1,2,3])>>>s0    11    22    3dtype: Int64
>>>s.to_list()[1, 2, 3]
Parameters:

allow_large_results (bool,default None) – If not None, overrides the global setting to allow or disallowlarge query results over the default size limit of 10 GB.

Returns:

list of the values.

Return type:

list

On this page

This Page