Skip to content

Commit 790c636

Browse files
committed
refactor: update paths
Ref: #4797 --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent ae9e5fd commit 790c636

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2049,7 +2049,7 @@ ns.push({
20492049
'@stdlib/stats/strided/dstdev',
20502050
'@stdlib/stats/strided/dvariancewd',
20512051
'@stdlib/stats/base/sstdevwd',
2052-
'@stdlib/stats/base/stdevwd'
2052+
'@stdlib/stats/strided/stdevwd'
20532053
]
20542054
});
20552055

lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/n.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ ns.push({
299299
'@stdlib/stats/base/nanvariancewd',
300300
'@stdlib/stats/base/nanstdev',
301301
'@stdlib/stats/base/snanstdevwd',
302-
'@stdlib/stats/base/stdevwd'
302+
'@stdlib/stats/strided/stdevwd'
303303
]
304304
});
305305

lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/s.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,7 @@ ns.push({
16791679
'@stdlib/stats/strided/dstdevwd',
16801680
'@stdlib/stats/base/snanstdevwd',
16811681
'@stdlib/stats/strided/sstdev',
1682-
'@stdlib/stats/base/stdevwd',
1682+
'@stdlib/stats/strided/stdevwd',
16831683
'@stdlib/stats/strided/svariancewd'
16841684
]
16851685
});
@@ -1846,8 +1846,8 @@ ns.push({
18461846

18471847
ns.push({
18481848
'alias': 'base.strided.stdevwd',
1849-
'path': '@stdlib/stats/base/stdevwd',
1850-
'value': require( '@stdlib/stats/base/stdevwd' ),
1849+
'path': '@stdlib/stats/strided/stdevwd',
1850+
'value': require( '@stdlib/stats/strided/stdevwd' ),
18511851
'type': 'Function',
18521852
'related': [
18531853
'@stdlib/stats/strided/dstdevwd',

lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/v.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ ns.push({
8888
'related': [
8989
'@stdlib/stats/strided/dvariancewd',
9090
'@stdlib/stats/base/nanvariancewd',
91-
'@stdlib/stats/base/stdevwd',
91+
'@stdlib/stats/strided/stdevwd',
9292
'@stdlib/stats/strided/variance'
9393
]
9494
});

lib/node_modules/@stdlib/stats/array/stdevwd/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The population [standard deviation][standard-deviation] of a finite size populat
3333
```
3434

3535
<!-- <div class="equation" align="center" data-raw-text="\sigma = \sqrt{\frac{1}{N} \sum_{i=0}^{N-1} (x_i - \mu)^2}" data-equation="eq:population_standard_deviation">
36-
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/base/stdevwd/docs/img/equation_population_standard_deviation.svg" alt="Equation for the population standard deviation.">
36+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/strided/stdevwd/docs/img/equation_population_standard_deviation.svg" alt="Equation for the population standard deviation.">
3737
<br>
3838
</div> -->
3939

@@ -48,7 +48,7 @@ where the population mean is given by
4848
```
4949

5050
<!-- <div class="equation" align="center" data-raw-text="\mu = \frac{1}{N} \sum_{i=0}^{N-1} x_i" data-equation="eq:population_mean">
51-
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/base/stdevwd/docs/img/equation_population_mean.svg" alt="Equation for the population mean.">
51+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/strided/stdevwd/docs/img/equation_population_mean.svg" alt="Equation for the population mean.">
5252
<br>
5353
</div> -->
5454

@@ -63,7 +63,7 @@ s = \sqrt{\frac{1}{n-1} \sum_{i=0}^{n-1} (x_i - \bar{x})^2}
6363
```
6464

6565
<!-- <div class="equation" align="center" data-raw-text="s = \sqrt{\frac{1}{n-1} \sum_{i=0}^{n-1} (x_i - \bar{x})^2}" data-equation="eq:corrected_sample_standard_deviation">
66-
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/base/stdevwd/docs/img/equation_corrected_sample_standard_deviation.svg" alt="Equation for computing a corrected sample standard deviation.">
66+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/strided/stdevwd/docs/img/equation_corrected_sample_standard_deviation.svg" alt="Equation for computing a corrected sample standard deviation.">
6767
<br>
6868
</div> -->
6969

@@ -78,7 +78,7 @@ where the sample mean is given by
7878
```
7979

8080
<!-- <div class="equation" align="center" data-raw-text="\bar{x} = \frac{1}{n} \sum_{i=0}^{n-1} x_i" data-equation="eq:sample_mean">
81-
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/base/stdevwd/docs/img/equation_sample_mean.svg" alt="Equation for the sample mean.">
81+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@90512ed90d4af5fbbe76b3e88575682f8196ac54/lib/node_modules/@stdlib/stats/strided/stdevwd/docs/img/equation_sample_mean.svg" alt="Equation for the sample mean.">
8282
<br>
8383
</div> -->
8484

lib/node_modules/@stdlib/stats/array/stdevwd/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var dtypes = require( '@stdlib/array/dtypes' );
2626
var dtype = require( '@stdlib/array/dtype' );
2727
var contains = require( '@stdlib/array/base/assert/contains' );
2828
var join = require( '@stdlib/array/base/join' );
29-
var strided = require( '@stdlib/stats/base/stdevwd' ).ndarray;
29+
var strided = require( '@stdlib/stats/strided/stdevwd' ).ndarray;
3030
var format = require( '@stdlib/string/format' );
3131

3232

lib/node_modules/@stdlib/stats/base/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The namespace contains the following statistical functions:
105105
- <span class="signature">[`stdevch( N, correction, x, strideX )`][@stdlib/stats/base/stdevch]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using a one-pass trial mean algorithm.</span>
106106
- <span class="signature">[`stdevpn( N, correction, x, strideX )`][@stdlib/stats/base/stdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using a two-pass algorithm.</span>
107107
- <span class="signature">[`stdevtk( N, correction, x, stride )`][@stdlib/stats/base/stdevtk]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using a one-pass textbook algorithm.</span>
108-
- <span class="signature">[`stdevwd( N, correction, x, stride )`][@stdlib/stats/base/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
108+
- <span class="signature">[`stdevwd( N, correction, x, stride )`][@stdlib/stats/strided/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
109109
- <span class="signature">[`stdevyc( N, correction, x, stride )`][@stdlib/stats/strided/stdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
110110
- <span class="signature">[`variance( N, correction, x, strideX )`][@stdlib/stats/strided/variance]</span><span class="delimiter">: </span><span class="description">calculate the variance of a strided array.</span>
111111
- <span class="signature">[`variancech( N, correction, x, strideX )`][@stdlib/stats/strided/variancech]</span><span class="delimiter">: </span><span class="description">calculate the variance of a strided array using a one-pass trial mean algorithm.</span>
@@ -259,7 +259,7 @@ console.log( objectKeys( ns ) );
259259

260260
[@stdlib/stats/base/stdevtk]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/stdevtk
261261

262-
[@stdlib/stats/base/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/stdevwd
262+
[@stdlib/stats/strided/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/stdevwd
263263

264264
[@stdlib/stats/strided/stdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/stdevyc
265265

lib/node_modules/@stdlib/stats/base/nanstdevwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ console.log( v );
235235
- <span class="package-name">[`@stdlib/stats/base/nanvariancewd`][@stdlib/stats/base/nanvariancewd]</span><span class="delimiter">: </span><span class="description">calculate the variance of a strided array ignoring NaN values and using Welford's algorithm.</span>
236236
- <span class="package-name">[`@stdlib/stats/base/nanstdev`][@stdlib/stats/base/nanstdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array ignoring NaN values.</span>
237237
- <span class="package-name">[`@stdlib/stats/base/snanstdevwd`][@stdlib/stats/base/snanstdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array ignoring NaN values and using Welford's algorithm.</span>
238-
- <span class="package-name">[`@stdlib/stats/base/stdevwd`][@stdlib/stats/base/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
238+
- <span class="package-name">[`@stdlib/stats/strided/stdevwd`][@stdlib/stats/strided/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
239239

240240
</section>
241241

@@ -267,7 +267,7 @@ console.log( v );
267267

268268
[@stdlib/stats/base/snanstdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanstdevwd
269269

270-
[@stdlib/stats/base/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/stdevwd
270+
[@stdlib/stats/strided/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/stdevwd
271271

272272
<!-- </related-links> -->
273273

lib/node_modules/@stdlib/stats/base/sstdevwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ console.log( v );
248248
- <span class="package-name">[`@stdlib/stats/strided/dstdevwd`][@stdlib/stats/strided/dstdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using Welford's algorithm.</span>
249249
- <span class="package-name">[`@stdlib/stats/base/snanstdevwd`][@stdlib/stats/base/snanstdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array ignoring NaN values and using Welford's algorithm.</span>
250250
- <span class="package-name">[`@stdlib/stats/strided/sstdev`][@stdlib/stats/strided/sstdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array.</span>
251-
- <span class="package-name">[`@stdlib/stats/base/stdevwd`][@stdlib/stats/base/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
251+
- <span class="package-name">[`@stdlib/stats/strided/stdevwd`][@stdlib/stats/strided/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
252252
- <span class="package-name">[`@stdlib/stats/strided/svariancewd`][@stdlib/stats/strided/svariancewd]</span><span class="delimiter">: </span><span class="description">calculate the variance of a single-precision floating-point strided array using Welford's algorithm.</span>
253253

254254
</section>
@@ -277,7 +277,7 @@ console.log( v );
277277

278278
[@stdlib/stats/strided/sstdev]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/sstdev
279279

280-
[@stdlib/stats/base/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/stdevwd
280+
[@stdlib/stats/strided/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/stdevwd
281281

282282
[@stdlib/stats/strided/svariancewd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/svariancewd
283283

lib/node_modules/@stdlib/stats/strided/dstdevwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ int main( void ) {
353353
- <span class="package-name">[`@stdlib/stats/strided/dstdev`][@stdlib/stats/strided/dstdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array.</span>
354354
- <span class="package-name">[`@stdlib/stats/strided/dvariancewd`][@stdlib/stats/strided/dvariancewd]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array using Welford's algorithm.</span>
355355
- <span class="package-name">[`@stdlib/stats/base/sstdevwd`][@stdlib/stats/base/sstdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using Welford's algorithm.</span>
356-
- <span class="package-name">[`@stdlib/stats/base/stdevwd`][@stdlib/stats/base/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
356+
- <span class="package-name">[`@stdlib/stats/strided/stdevwd`][@stdlib/stats/strided/stdevwd]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
357357
358358
</section>
359359
@@ -383,7 +383,7 @@ int main( void ) {
383383
384384
[@stdlib/stats/base/sstdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/sstdevwd
385385
386-
[@stdlib/stats/base/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/stdevwd
386+
[@stdlib/stats/strided/stdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/stdevwd
387387
388388
<!-- </related-links> -->
389389

0 commit comments

Comments
 (0)