deno.land / x / simplestatistic@v7.7.1 / src / kernel_density_estimation.d.ts

kernel_density_estimation.d.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export type Kernels = "gaussian";export type BandwidthMethods = "nrd";
/** * https://simplestatistics.org/docs/#kde */declare function kernelDensityEstimation( X: number[], kernel?: Kernels | ((u: number) => number), bandwidthMethod?: BandwidthMethods | number): (x: number) => number;
export default kernelDensityEstimation;
simplestatistic

Version Info

Tagged at
2 years ago