snowflake.snowpark.modin.plugin.extensions.window_overrides.Expanding.min¶
- Expanding.min(numeric_only: bool = False, engine: Optional[Literal['cython', 'numba']] = None, engine_kwargs: Optional[dict[str, bool]] = None)[source]¶
Compute the expanding std.
- Parameters:
numeric_only (bool, default False) – Include only float, int, boolean columns.
None –
engine (str, default None None) –
'cython': Runs the operation through C-extensions from cython.'numba': Runs the operation through JIT compiled code from numba.None: Defaults to'cython'or globally settingcompute.use_numba
This parameter is ignored in Snowpark pandas. The execution engine will always be Snowflake.
engine_kwargs (dict, default None None) –
For
'cython'engine, there are no acceptedengine_kwargs- For
'numba'engine, the engine can acceptnopython,nogil and
paralleldictionary keys. The values must either beTrueorFalse. The defaultengine_kwargsfor the'numba'engine is{'nopython': True, 'nogil': False, 'parallel': False}.
- For
This parameter is ignored in Snowpark pandas. The execution engine will always be Snowflake.
None –
- Returns:
Computed expanding std of values.
- Return type:
Examples