You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/nanrange-by/README.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ The function has the following parameters:
57
57
58
58
-**N**: number of indexed elements.
59
59
-**x**: input [`Array`][mdn-array], [`typed array`][mdn-typed-array], or an array-like object (excluding strings and functions).
60
-
-**stride**: index increment
60
+
-**strideX**: index increment.
61
61
-**clbk**: callback function.
62
62
-**thisArg**: execution context (_optional_).
63
63
@@ -171,7 +171,7 @@ var v = nanrangeBy.ndarray( 3, x, 1, x.length-3, accessor );
171
171
- A provided callback function should return a numeric value.
172
172
- If a provided callback function returns `NaN`, the value is ignored.
173
173
- If a provided callback function does not return any value (or equivalently, explicitly returns `undefined`), the value is ignored.
174
-
- When possible, prefer using [`dnanrange`][@stdlib/stats/base/dnanrange], [`snanrange`][@stdlib/stats/base/snanrange], and/or [`nanrange`][@stdlib/stats/base/nanrange], as, depending on the environment, these interfaces are likely to be significantly more performant.
174
+
- When possible, prefer using [`dnanrange`][@stdlib/stats/strided/dnanrange], [`snanrange`][@stdlib/stats/strided/snanrange], and/or [`nanrange`][@stdlib/stats/base/nanrange], as, depending on the environment, these interfaces are likely to be significantly more performant.
175
175
176
176
</section>
177
177
@@ -220,12 +220,12 @@ console.log( v );
220
220
221
221
## See Also
222
222
223
-
- <spanclass="package-name">[`@stdlib/stats/base/dnanrange`][@stdlib/stats/base/dnanrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array, ignoring NaN values.</span>
223
+
- <spanclass="package-name">[`@stdlib/stats/strided/dnanrange`][@stdlib/stats/strided/dnanrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array, ignoring NaN values.</span>
224
224
- <spanclass="package-name">[`@stdlib/stats/base/nanmax-by`][@stdlib/stats/base/nanmax-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array via a callback function, ignoring NaN values.</span>
225
225
- <spanclass="package-name">[`@stdlib/stats/base/nanmin-by`][@stdlib/stats/base/nanmin-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array via a callback function, ignoring NaN values.</span>
226
226
- <spanclass="package-name">[`@stdlib/stats/base/nanrange`][@stdlib/stats/base/nanrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array, ignoring NaN values.</span>
227
227
- <spanclass="package-name">[`@stdlib/stats/base/range-by`][@stdlib/stats/base/range-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array via a callback function.</span>
228
-
- <spanclass="package-name">[`@stdlib/stats/base/snanrange`][@stdlib/stats/base/snanrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array, ignoring NaN values.</span>
228
+
- <spanclass="package-name">[`@stdlib/stats/strided/snanrange`][@stdlib/stats/strided/snanrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array, ignoring NaN values.</span>
0 commit comments