UNPKG

@formant/ava

Version:

A framework for automated visual analytics.

10 lines (9 loc) 426 B
import { PCorrTestParameter } from '../../../data/statistics/types'; import { CorrelationInfo, GetPatternInfo } from '../../types'; type CorrelationResult = { significance: number; pcorr: number; }; export declare function findCorrelation(x: number[], y: number[], pCorrTestParameter?: PCorrTestParameter): CorrelationResult | null; export declare const getCorrelationInfo: GetPatternInfo<CorrelationInfo>; export {};