Skip to main content
Module

x/simplestatistic/src/r_squared.d.ts

simple statistics for node & browser javascript
File
/** * https://simplestatistics.org/docs/#rsquared */declare function rSquared(x: number[][], func: (x: number) => number): number;
export default rSquared;