@stdlib/stats-incr-rss 0.0.2 → 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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
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
 
@@ -31,7 +31,7 @@ The [**residual sum of squares**][residual-sum-of-squares] (also referred to as
31
31
  <!-- <equation class="equation" label="eq:residual_sum_of_squares" align="center" raw="\operatorname{RSS} = \sum_{i=0}^{n-1} (y_i - x_i)^2" alt="Equation for the residual sum of squares."> -->
32
32
 
33
33
  <div class="equation" align="center" data-raw-text="\operatorname{RSS} = \sum_{i=0}^{n-1} (y_i - x_i)^2" data-equation="eq:residual_sum_of_squares">
34
- <img src="https://cdn.rawgit.com/stdlib-js/stdlib/78799028a150a44d463029bdb62ac870b1c1f9d4/lib/node_modules/@stdlib/stats/incr/rss/docs/img/equation_residual_sum_of_squares.svg" alt="Equation for the residual sum of squares.">
34
+ <img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@78799028a150a44d463029bdb62ac870b1c1f9d4/lib/node_modules/@stdlib/stats/incr/rss/docs/img/equation_residual_sum_of_squares.svg" alt="Equation for the residual sum of squares.">
35
35
  <br>
36
36
  </div>
37
37
 
@@ -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
 
@@ -143,6 +161,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
143
161
 
144
162
  For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
145
163
 
164
+ #### Community
165
+
166
+ [![Chat][chat-image]][chat-url]
167
+
146
168
  ---
147
169
 
148
170
  ## License
@@ -152,7 +174,7 @@ See [LICENSE][stdlib-license].
152
174
 
153
175
  ## Copyright
154
176
 
155
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
177
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
156
178
 
157
179
  </section>
158
180
 
@@ -171,9 +193,23 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
171
193
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-incr-rss/main.svg
172
194
  [coverage-url]: https://codecov.io/github/stdlib-js/stats-incr-rss?branch=main
173
195
 
174
- [dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-rss
196
+ <!--
197
+
198
+ [dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-rss.svg
175
199
  [dependencies-url]: https://david-dm.org/stdlib-js/stats-incr-rss/main
176
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
+
210
+ [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
211
+ [chat-url]: https://gitter.im/stdlib-js/stdlib/
212
+
177
213
  [stdlib]: https://github.com/stdlib-js/stdlib
178
214
 
179
215
  [stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
@@ -182,6 +218,16 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
182
218
 
183
219
  [residual-sum-of-squares]: https://en.wikipedia.org/wiki/Residual_sum_of_squares
184
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
+
185
231
  </section>
186
232
 
187
233
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/stats-incr-rss",
3
- "version": "0.0.2",
3
+ "version": "0.0.6",
4
4
  "description": "Compute the residual sum of squares (RSS) incrementally.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -15,6 +15,7 @@
15
15
  ],
16
16
  "main": "./lib",
17
17
  "directories": {
18
+ "benchmark": "./benchmark",
18
19
  "doc": "./docs",
19
20
  "example": "./examples",
20
21
  "lib": "./lib",
@@ -27,7 +28,7 @@
27
28
  "examples": "make examples",
28
29
  "benchmark": "make benchmark"
29
30
  },
30
- "homepage": "https://github.com/stdlib-js/stdlib",
31
+ "homepage": "https://stdlib.io",
31
32
  "repository": {
32
33
  "type": "git",
33
34
  "url": "git://github.com/stdlib-js/stats-incr-rss.git"
package/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- # CHANGELOG
2
-
3
- > Package changelog.
4
-
5
- See [GitHub Releases](https://github.com/stdlib-js/stats-incr-rss/releases) for the changelog.