diff --git a/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts b/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts index 9c50ea2..7ad7c73 100644 --- a/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts +++ b/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts @@ -79,7 +79,10 @@ export class ChartHitDistributionComponent implements OnInit, OnChanges { const upperBound = percentiles[1] + 1.5 * iqr; // Filter outliers - ys = ys.filter(y => y > lowerBound && y < upperBound); + let removedOutliers = ys.filter(y => y > lowerBound && y < upperBound); + if(removedOutliers.length > 0) { + ys = removedOutliers; + } } // Assuming data is already without outliers and sorted if necessary @@ -259,8 +262,7 @@ export class ChartHitDistributionComponent implements OnInit, OnChanges { } for (let key = range[0]; key <= range[1]; key += 2) { - const endKey = key + 2 <= range[1] ? key + 2 : key + 1; - labels.push(`${key}ms to ${endKey}ms`); + labels.push(`${key}ms to ${key + 2}ms`); const currentEntry = entriesMap.get(key) || { ...defaultValues }; const nextEntry = key + 1 <= range[1] ? (entriesMap.get(key + 1) || { ...defaultValues }) : defaultValues; @@ -279,14 +281,15 @@ export class ChartHitDistributionComponent implements OnInit, OnChanges { } // Handling the case for an odd last key if needed - if (range[1] % 2 !== range[0] % 2) { - const lastEntry = entriesMap.get(range[1]) || { ...defaultValues }; - labels.push(`${range[1]}ms to ${range[1] + 1}ms`); - datasets[0].push(this.showPercentages ? ((lastEntry.countMiss / totalHits) * 100) : lastEntry.countMiss); - datasets[1].push(this.showPercentages ? ((lastEntry.count50 / totalHits) * 100) : lastEntry.count50); - datasets[2].push(this.showPercentages ? ((lastEntry.count100 / totalHits) * 100) : lastEntry.count100); - datasets[3].push(this.showPercentages ? ((lastEntry.count300 / totalHits) * 100) : lastEntry.count300); - } + // if (range[1] % 2 !== range[0] % 2) { + // const lastEntry = entriesMap.get(range[1]) || { ...defaultValues }; + // labels.push(`${range[1]}ms to ${range[1] + 1}ms`); + // console.log(`${range[1]}ms to ${range[1] + 1}ms`, range[1], lastEntry); + // datasets[0].push(this.showPercentages ? ((lastEntry.countMiss / totalHits) * 100) : lastEntry.countMiss); + // datasets[1].push(this.showPercentages ? ((lastEntry.count50 / totalHits) * 100) : lastEntry.count50); + // datasets[2].push(this.showPercentages ? ((lastEntry.count100 / totalHits) * 100) : lastEntry.count100); + // datasets[3].push(this.showPercentages ? ((lastEntry.count300 / totalHits) * 100) : lastEntry.count300); + // } } else { // Calculate totalHits as the sum of all counts across entriesMap before the loop let totalHits = 0;