Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Sep 26, 2021
1 parent 4e91525 commit ce78958
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/stats/outliers_logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ export const getOutliersPercentages = function (measures) {

// Minimum increment between two outliers percentages.
// For example, 1e-3 means the granularity is 0.1%.
// A higher value makes it slower to compute.
// A lower value makes the value less accurate.
// A higher value it slower to compute.
// A lower value:
// - Makes the value less accurate
// - Makes the value more variable, making it sometimes flicker
const OUTLIERS_GRANULARITY = 1e-4

// eslint-disable-next-line max-statements
Expand Down

0 comments on commit ce78958

Please sign in to comment.