Skip to content

Commit a97b78d

Browse files
added nanmaape
1 parent 72ed000 commit a97b78d

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/stats/incr/nanmaape

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/incr/nanmaape/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# incrnanmaape
2222

23-
> Compute the [mean arctangent absolute percentage error][@kim:2016a] (MAAPE) incrementally.
23+
> Compute the [mean arctangent absolute percentage error][@kim:2016a] (NANMAAPE) incrementally.
2424
2525
<section class="intro">
2626

@@ -29,11 +29,11 @@ The [mean arctangent absolute percentage error][@kim:2016a] is defined as
2929
<!-- <equation class="equation" label="eq:mean_arctangent_absolute_percentage_error" align="center" raw="\operatorname{MAAPE} = \frac{1}{n} \sum_{i=0}^{n-1} \operatorname{arctan}\biggl( \biggl| \frac{a_i - f_i}{a_i} \biggr| \biggr)" alt="Equation for the mean arctangent absolute percentage error."> -->
3030

3131
```math
32-
\mathop{\mathrm{MAAPE}} = \frac{1}{n} \sum_{i=0}^{n-1} \mathop{\mathrm{arctan}}\biggl( \biggl| \frac{a_i - f_i}{a_i} \biggr| \biggr)
32+
\mathop{\mathrm{NANMAAPE}} = \frac{1}{n} \sum_{i=0}^{n-1} \mathop{\mathrm{arctan}}\biggl( \biggl| \frac{a_i - f_i}{a_i} \biggr| \biggr)
3333
```
3434

3535
<!-- <div class="equation" align="center" data-raw-text="\operatorname{MAAPE} = \frac{1}{n} \sum_{i=0}^{n-1} \operatorname{arctan} \biggl( \biggl| \frac{a_i - f_i}{a_i} \biggr| \biggr)" data-equation="eq:mean_arctangent_absolute_percentage_error">
36-
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@d40d38b97af0f02f0fcc47100c3ebaca25db7c0d/lib/node_modules/@stdlib/stats/incr/maape/docs/img/equation_mean_arctangent_absolute_percentage_error.svg" alt="Equation for the mean arctangent absolute percentage error.">
36+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@d40d38b97af0f02f0fcc47100c3ebaca25db7c0d/lib/node_modules/@stdlib/stats/incr/nanmaape/docs/img/equation_mean_arctangent_absolute_percentage_error.svg" alt="Equation for the mean arctangent absolute percentage error.">
3737
<br>
3838
</div> -->
3939

@@ -90,7 +90,7 @@ m = accumulator();
9090
## Notes
9191

9292
- Input values are **not** type checked. If provided `NaN` or a value which, when used in computations, results in `NaN`, the accumulated value is `NaN` for **all** future invocations. If non-numeric inputs are possible, you are advised to type check and handle accordingly **before** passing the value to the accumulator function.
93-
- Note that, unlike the [mean absolute percentage error][@stdlib/stats/incr/mape] (MAPE), the [mean arctangent absolute percentage error][@kim:2016a] is expressed in radians on the interval \[0,π/2].
93+
- Note that, unlike the [mean absolute percentage error][@stdlib/stats/incr/nanmape] (NMAPE), the [mean arctangent absolute percentage error][@kim:2016a] is expressed in radians on the interval \[0,π/2].
9494

9595
</section>
9696

@@ -104,7 +104,7 @@ m = accumulator();
104104

105105
```javascript
106106
var randu = require( '@stdlib/random/base/randu' );
107-
var incrnanmaape = require( '@stdlib/stats/incr/maape' );
107+
var incrnanmaape = require( '@stdlib/stats/incr/nanmaape' );
108108

109109
var accumulator;
110110
var v1;

0 commit comments

Comments
 (0)