Skip to content

Commit

Permalink
Move file
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Sep 26, 2021
1 parent ade63ad commit f6d8a72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/stats/compute.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { getConfidenceInterval } from './confidence.js'
import { getHistogram } from './histogram.js'
import { getLengthFromLoops } from './length.js'
import { getMoe, getRmoe } from './moe.js'
import { getOutliersPercentages } from './outliers.js'
import { getOutliersPercentages } from './outliers/main.js'
import { getSortedMedian, getQuantiles } from './quantile.js'
import { getStdev, getRstdev } from './stdev.js'
import { getMean } from './sum.js'
Expand Down
2 changes: 1 addition & 1 deletion src/stats/outliers.js → src/stats/outliers/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable max-lines */
import { getQuantiles } from './quantile.js'
import { getQuantiles } from '../quantile.js'

// Measures usually contain some:
// - Very slow outliers due to background processes or engine optimization
Expand Down

0 comments on commit f6d8a72

Please sign in to comment.