snowflake.snowpark.DataFrameStatFunctions.sample_by¶
- DataFrameStatFunctions.sample_by(col: Union[Column, str], fractions: Dict[Union[None, bool, int, float, str, bytearray, Decimal, date, datetime, time, bytes, NaTType, float64, list, tuple, dict], float]) DataFrame[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.23.0/src/snowflake/snowpark/dataframe_stat_functions.py#L222-L255)¶
- Returns a DataFrame containing a stratified sample without replacement, based on a - dictthat specifies the fraction for each stratum.- Example: - >>> df = session.create_dataframe([("Bob", 17), ("Alice", 10), ("Nico", 8), ("Bob", 12)], schema=["name", "age"]) >>> fractions = {"Bob": 0.5, "Nico": 1.0} >>> sample_df = df.stat.sample_by("name", fractions) # non-deterministic result - Parameters:
- col – The name of the column that defines the strata. 
- fractions – A - dictthat specifies the fraction to use for the sample for each stratum. If a stratum is not specified in the- dict, the method uses 0 as the fraction.