We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c00cb8c commit e455c43Copy full SHA for e455c43
packages/vutils/src/common/regression-polynomial.ts
@@ -75,7 +75,7 @@ export function regressionPolynomial(
75
if (degree < 0) {
76
degree = 0;
77
}
78
- const alpha = options.alpha ?? 0.5;
+ const alpha = options.alpha ?? 0.05;
79
const m = degree + 1;
80
const sums: number[] = new Array(2 * degree + 1).fill(0);
81
0 commit comments