modin.pandas.Series.to_pandas

Series.to_pandas(*, statement_params: Optional[dict[str, str]] = None, **kwargs: Any) Series[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/modin/plugin/extensions/series_extensions.py#L172-L202)

Convert Snowpark pandas Series to pandas.Series (https://pandas.pydata.org/docs/reference/api/pandas.Series.html)

Parameters:

statement_params – Dictionary of statement level parameters to be set while executing this action.

See also

Returns:

pandas Series

>>> s = pd.Series(['Falcon', 'Falcon',
...                 'Parrot', 'Parrot'],
...                 name = 'Animal')
>>> s.to_pandas()
0    Falcon
1    Falcon
2    Parrot
3    Parrot
Name: Animal, dtype: object
Copy
Language: English