Exponential
# exponentialFacts function
packages/forge/src/regression/exponential.ts:47exponentialFacts(options: ExponentialFactOptions, statsResult: RegressionResult): FactResultGenerates facts from an exponential regression result.
Emits
trend.exponential — with the per-step multiplier and the doubling
time or half-life — plus fit.quality, fit.error, and a small-sample caveat.Parameters
| Name | Type | Description |
|---|---|---|
| options | CommonFactOptions | — |
| statsResult | RegressionResult | — |
Returns
FactResult
# ExponentialFactOptions type
packages/forge/src/regression/exponential.ts:17type ExponentialFactOptions = LogarithmicFactOptions;Options are the shared set — exponential adds no thresholds of its own.