data_juicer.analysis.overall_analysis module#
- class data_juicer.analysis.overall_analysis.OverallAnalysis(dataset, output_path)[source]#
Bases:
objectApply analysis on the overall stats, including mean, std, quantiles, etc.
- __init__(dataset, output_path)[source]#
Initialization method.
- Parameters:
dataset â the dataset to be analyzed
output_path â path to store the analysis results.
- analyze(percentiles=[], num_proc=1, skip_export=False)[source]#
Apply overall analysis on the whole dataset based on the describe method of pandas.
- Parameters:
percentiles â percentiles to analyze
num_proc â number of processes to analyze the dataset
skip_export â whether export the results to disk
- Returns:
the overall analysis result.