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])
>>> s
0    1
1    2
2    3
dtype: Int64
>>> s.to_list()
[1, 2, 3]
Parameters:

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

Returns:

list of the values.

Return type:

list