Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "stats/incr/mpe/docs/types/index.d"

Index

Type aliases

Functions

Type aliases

accumulator

accumulator: (f?: undefined | number, a?: undefined | number) => number | null

If provided input values, the accumulator function returns an updated mean percentage error. If not provided input values, the accumulator function returns the current mean percentage error.

Notes

  • If provided NaN or a value which, when used in computations, results in NaN, the accumulated value is NaN for all future invocations.
param

input value

param

input value

returns

mean percentage error or null

Type declaration

    • (f?: undefined | number, a?: undefined | number): number | null
    • Parameters

      • Optional f: undefined | number
      • Optional a: undefined | number

      Returns number | null

Functions

Export assignment incrmpe

  • Returns an accumulator function which incrementally computes the mean percentage error.

    Returns accumulator

    accumulator function

    Example

    var accumulator = incrmpe();
    
    var m = accumulator();
    // returns null
    
    m = accumulator( 2.0, 3.0 );
    // returns ~33.33
    
    m = accumulator( 5.0, 2.0 );
    // returns ~-58.33
    
    m = accumulator();
    // returns ~-58.33