modin.pandas.Series.get¶
- Series.get(key, default=None) DataFrame | Series | Scalar[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/.tox/docs/lib/python3.9/site-packages/modin/pandas/base.py#L1935-L1945)¶
Get item from object for given key (ex: DataFrame column).
Returns default value if not found.
- Parameters:
key (object) –
- Return type:
same type as items contained in object
Examples
Notes
Generally Snowpark pandas won’t raise KeyError or IndexError if any key is not found. So the result of get will be a result with existing keys or an empty result if no key is found. Default value won’t be used.