modin.pandas.DataFrame.get¶
- DataFrame.get(key, default=None) DataFrame | Series | Scalar[source]¶
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.