snowflake.snowpark.DataFrame.describe¶
- DataFrame.describe(*cols: Union[str, List[str]], strings_include_math_stats=False) DataFrame[source]¶
Computes basic statistics for numeric columns, which includes
count,mean,stddev,min, andmax. If no columns are provided, this function computes statistics for all numerical or string columns. Non-numeric and non-string columns will be ignored when calling this method.- Example::
- Parameters:
cols – The names of columns whose basic statistics are computed.
strings_include_math_stats – Whether StringType columns should have mean and stddev stats included.