@stdlib/stats-incr-rss 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +41 -2
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# incrrss
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Compute the [residual sum of squares][residual-sum-of-squares] (RSS) incrementally.
|
|
26
26
|
|
|
@@ -132,6 +132,24 @@ console.log( accumulator() );
|
|
|
132
132
|
|
|
133
133
|
<!-- /.examples -->
|
|
134
134
|
|
|
135
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
136
|
+
|
|
137
|
+
<section class="related">
|
|
138
|
+
|
|
139
|
+
* * *
|
|
140
|
+
|
|
141
|
+
## See Also
|
|
142
|
+
|
|
143
|
+
- <span class="package-name">[`@stdlib/stats/incr/mrss`][@stdlib/stats/incr/mrss]</span><span class="delimiter">: </span><span class="description">compute a moving residual sum of squares (RSS) incrementally.</span>
|
|
144
|
+
- <span class="package-name">[`@stdlib/stats/incr/mse`][@stdlib/stats/incr/mse]</span><span class="delimiter">: </span><span class="description">compute the mean squared error (MSE) incrementally.</span>
|
|
145
|
+
- <span class="package-name">[`@stdlib/stats/incr/rmse`][@stdlib/stats/incr/rmse]</span><span class="delimiter">: </span><span class="description">compute the root mean squared error (RMSE) incrementally.</span>
|
|
146
|
+
|
|
147
|
+
</section>
|
|
148
|
+
|
|
149
|
+
<!-- /.related -->
|
|
150
|
+
|
|
151
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
152
|
+
|
|
135
153
|
|
|
136
154
|
<section class="main-repo" >
|
|
137
155
|
|
|
@@ -156,7 +174,7 @@ See [LICENSE][stdlib-license].
|
|
|
156
174
|
|
|
157
175
|
## Copyright
|
|
158
176
|
|
|
159
|
-
Copyright © 2016-
|
|
177
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
160
178
|
|
|
161
179
|
</section>
|
|
162
180
|
|
|
@@ -175,9 +193,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
175
193
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-incr-rss/main.svg
|
|
176
194
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-incr-rss?branch=main
|
|
177
195
|
|
|
196
|
+
<!--
|
|
197
|
+
|
|
178
198
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-rss.svg
|
|
179
199
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-incr-rss/main
|
|
180
200
|
|
|
201
|
+
-->
|
|
202
|
+
|
|
203
|
+
[umd]: https://github.com/umdjs/umd
|
|
204
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
205
|
+
|
|
206
|
+
[deno-url]: https://github.com/stdlib-js/stats-incr-rss/tree/deno
|
|
207
|
+
[umd-url]: https://github.com/stdlib-js/stats-incr-rss/tree/umd
|
|
208
|
+
[esm-url]: https://github.com/stdlib-js/stats-incr-rss/tree/esm
|
|
209
|
+
|
|
181
210
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
182
211
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
183
212
|
|
|
@@ -189,6 +218,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
189
218
|
|
|
190
219
|
[residual-sum-of-squares]: https://en.wikipedia.org/wiki/Residual_sum_of_squares
|
|
191
220
|
|
|
221
|
+
<!-- <related-links> -->
|
|
222
|
+
|
|
223
|
+
[@stdlib/stats/incr/mrss]: https://www.npmjs.com/package/@stdlib/stats-incr-mrss
|
|
224
|
+
|
|
225
|
+
[@stdlib/stats/incr/mse]: https://www.npmjs.com/package/@stdlib/stats-incr-mse
|
|
226
|
+
|
|
227
|
+
[@stdlib/stats/incr/rmse]: https://www.npmjs.com/package/@stdlib/stats-incr-rmse
|
|
228
|
+
|
|
229
|
+
<!-- </related-links> -->
|
|
230
|
+
|
|
192
231
|
</section>
|
|
193
232
|
|
|
194
233
|
<!-- /.links -->
|