GuangMingYouBei
GuangMingYouBei
``` const dataFrame = new DataFrame(inputData); const deduplicatedData = new AutoAggregation(dataFrame).deDuplication(); ``` A deduplication method is proposed to aggregate the duplicated data rows which are troublesome for visualization.
An automatic tabular data aggregation algorithm is proposed.
There are two new features to review: (1) dimension drill down attribution, (2) function-based attribution. "packages/lite-insight/src/attribution/dimensionDrillDownAttribution.ts" is the main file of dimension drill down attribution. "packages/lite-insight/src/attribution/functionBasedAttribution.ts" is the main file...
### PR includes Propose a new auto aggregation method that aggregates duplicated rows in a dataset. By default, it will be aggregated with the sum function. Other aggregated methods will...