@visactor/vmind
Version:
<div align="center"> <a href="https://github.com/VisActor#gh-light-mode-only" target="_blank"> <img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_light.svg"/> </a> <a href="https://githu
13 lines (12 loc) • 430 B
TypeScript
import type { InsightAlgorithm } from '../../type';
export interface DataPoint {
index: number;
indexPair?: number[];
value: number;
}
export declare function getAbnormalByZScores(data: DataPoint[], threshold?: number): number[];
export declare function getAbnormalByIQR(data: DataPoint[]): number[];
export interface StatisticsOptions {
threshold?: number;
}
export declare const StatisticsAlo: InsightAlgorithm;