Try an average

This commit is contained in:
Herbert Wolverson 2025-01-30 13:03:22 -06:00
parent 9ec0811207
commit 89e2104c9a

View File

@ -255,7 +255,7 @@ export class ThroughputBpsDash extends BaseDashlet{
// Get the median from dlRing
let dlMedian = 0;
if (this.dlRing.length > 0) {
upMedian = this.dlRing.reduce((a, b) => a + b) / this.dlRing.length;
dlMedian = this.dlRing.reduce((a, b) => a + b) / this.dlRing.length;
}
// Big numbers are smoothed medians