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
-[`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
16
17
17
18
</details>
@@ -24,8 +25,9 @@
24
25
25
26
### Contributors
26
27
27
-
A total of 1 person contributed to this release. Thank you to this contributor:
28
+
A total of 2 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ var v = nanrangeBy( x.length, x, 1, accessor );
89
89
The function has the following parameters:
90
90
91
91
-**N**: number of indexed elements.
92
-
-**x**: input [`Array`][mdn-array], [`typed array`][mdn-typed-array], or an array-like object (excluding strings and functions).
92
+
-**x**: input [`Array`][mdn-array], [`typed array`][mdn-typed-array], or an array-like object (excluding strings and functions).
93
93
-**stride**: index increment.
94
94
-**clbk**: callback function.
95
95
-**thisArg**: execution context (_optional_).
@@ -204,7 +204,7 @@ var v = nanrangeBy.ndarray( 3, x, 1, x.length-3, accessor );
204
204
- A provided callback function should return a numeric value.
205
205
- If a provided callback function returns `NaN`, the value is ignored.
206
206
- If a provided callback function does not return any value (or equivalently, explicitly returns `undefined`), the value is ignored.
207
-
- 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.
207
+
- When possible, prefer using [`dnanrange`][@stdlib/stats/strided/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.
208
208
209
209
</section>
210
210
@@ -252,7 +252,7 @@ console.log( v );
252
252
253
253
## See Also
254
254
255
-
- <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>
255
+
- <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>
256
256
- <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>
257
257
- <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>
258
258
- <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>
0 commit comments