snowflake.snowpark.RelationalGroupedDataFrame.agg¶
- RelationalGroupedDataFrame.agg(*exprs: Column | Tuple[ColumnOrName, str] | Dict[str, str]) DataFrame [source]¶
Returns a
DataFrame
with computed aggregates. See examples inDataFrame.group_by()
.- Parameters:
exprs –
A variable length arguments list where every element is
A Column object
A tuple where the first element is a column object or a column name and the second element is the name of the aggregate function
A list of the above
or a
dict
maps column names to aggregate function names.
Note
The name of the aggregate function to compute must be a valid Snowflake aggregate function.
See also