fusetools.stat_tools.Desc¶
-
class
fusetools.stat_tools.Desc[source]¶ Bases:
objectFunctions for helping with Descriptive statistical tasks.
Methods
Creates a Pandas DataFrame with specified aggregations over specified dimensions.
Creates a plot of a data table.
-
classmethod
group_stats(df, dim_cols, agg_dict)[source]¶ Creates a Pandas DataFrame with specified aggregations over specified dimensions.
- Parameters
df – Pandas DataFrame.
dim_cols – List of columns to group by.
agg_dict – Dictionary of columns and calculations to perform.
- Returns
Pandas DataFrame of calculated results.
-
classmethod