123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- function asc<T extends number[]>(arr: T): T {
- arr.sort(function (a, b) {
- return a - b;
- });
- return arr;
- }
- function quantile(ascArr: number[], p: number): number {
- const H = (ascArr.length - 1) * p + 1;
- const h = Math.floor(H);
- const v = +ascArr[h - 1];
- const e = H - h;
- return e ? v + e * (ascArr[h] - v) : v;
- }
- export default function (
- rawData: number[][],
- opt: {
- boundIQR?: number | 'none',
- layout?: 'horizontal' | 'vertical'
- }
- ): {
- boxData: number[][]
- outliers: number[][]
- axisData: string[]
- } {
- opt = opt || {};
- const boxData = [];
- const outliers = [];
- const axisData: string[] = [];
- const boundIQR = opt.boundIQR;
- const useExtreme = boundIQR === 'none' || boundIQR === 0;
- for (let i = 0; i < rawData.length; i++) {
- axisData.push(i + '');
- const ascList = asc(rawData[i].slice());
- const Q1 = quantile(ascList, 0.25);
- const Q2 = quantile(ascList, 0.5);
- const Q3 = quantile(ascList, 0.75);
- const min = ascList[0];
- const max = ascList[ascList.length - 1];
- const bound = (boundIQR == null ? 1.5 : boundIQR as number) * (Q3 - Q1);
- const low = useExtreme
- ? min
- : Math.max(min, Q1 - bound);
- const high = useExtreme
- ? max
- : Math.min(max, Q3 + bound);
- boxData.push([low, Q1, Q2, Q3, high]);
- for (let j = 0; j < ascList.length; j++) {
- const dataItem = ascList[j];
- if (dataItem < low || dataItem > high) {
- const outlier = [i, dataItem];
- opt.layout === 'vertical' && outlier.reverse();
- outliers.push(outlier);
- }
- }
- }
- return {
- boxData: boxData,
- outliers: outliers,
- axisData: axisData
- };
- }
|