snowflake.snowpark.DataFrame.describe¶
- DataFrame.describe(*cols: str | List[str]) 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.