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
- 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