You are viewing documentation about an older version (1.21.0). View latest version

modin.pandas.Series.to_pandas¶

Series.to_pandas(*, statement_params: Optional[dict[str, str]] = None, **kwargs: Any) → Series[source]¶

Convert Snowpark pandas Series to pandas.Series

Parameters:

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

See also

  • to_pandas

  • DataFrame.to_pandas

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