modin.pandas.Series.unpin_backend

Series.unpin_backend(inplace: bool = False) Optional[Self][source] (https://github.com/snowflakedb/snowpark-python/blob/v1.33.0/.tox/docs/lib/python3.9/site-packages/modin/core/storage_formats/pandas/query_compiler_caster.py#L218-L232)

Unpin the object’s underlying data, allowing Modin to automatically move it to another backend.

Parameters:

inplace (bool, default: False) – Whether to update the object in place.

Returns:

The newly-unpinned object, if inplace is False. Otherwise, None.

Return type:

Optional[Self]

Language: English