Skip to content

Commit 438e57b

Browse files
committed
refactor: update paths
Ref: stdlib-js#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 017c0d1 commit 438e57b

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@ ns.push({
13191319
'related': [
13201320
'@stdlib/stats/base/dnanstdev',
13211321
'@stdlib/stats/strided/dnanvarianceyc',
1322-
'@stdlib/stats/base/dstdevyc',
1322+
'@stdlib/stats/strided/dstdevyc',
13231323
'@stdlib/stats/base/nanstdevyc',
13241324
'@stdlib/stats/base/snanstdevyc'
13251325
]
@@ -1668,7 +1668,7 @@ ns.push({
16681668
'related': [
16691669
'@stdlib/stats/base/dnansemyc',
16701670
'@stdlib/stats/base/dsem',
1671-
'@stdlib/stats/base/dstdevyc',
1671+
'@stdlib/stats/strided/dstdevyc',
16721672
'@stdlib/stats/base/semyc',
16731673
'@stdlib/stats/base/ssemyc'
16741674
]
@@ -2055,8 +2055,8 @@ ns.push({
20552055

20562056
ns.push({
20572057
'alias': 'base.strided.dstdevyc',
2058-
'path': '@stdlib/stats/base/dstdevyc',
2059-
'value': require( '@stdlib/stats/base/dstdevyc' ),
2058+
'path': '@stdlib/stats/strided/dstdevyc',
2059+
'value': require( '@stdlib/stats/strided/dstdevyc' ),
20602060
'type': 'Function',
20612061
'related': [
20622062
'@stdlib/stats/strided/dnanstdevyc',
@@ -2320,7 +2320,7 @@ ns.push({
23202320
'type': 'Function',
23212321
'related': [
23222322
'@stdlib/stats/strided/dnanvarianceyc',
2323-
'@stdlib/stats/base/dstdevyc',
2323+
'@stdlib/stats/strided/dstdevyc',
23242324
'@stdlib/stats/base/dvariance',
23252325
'@stdlib/stats/base/svarianceyc',
23262326
'@stdlib/stats/base/varianceyc'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1690,7 +1690,7 @@ ns.push({
16901690
'value': require( '@stdlib/stats/base/sstdevyc' ),
16911691
'type': 'Function',
16921692
'related': [
1693-
'@stdlib/stats/base/dstdevyc',
1693+
'@stdlib/stats/strided/dstdevyc',
16941694
'@stdlib/stats/base/snanstdevyc',
16951695
'@stdlib/stats/base/sstdev',
16961696
'@stdlib/stats/base/stdevyc',
@@ -1864,7 +1864,7 @@ ns.push({
18641864
'value': require( '@stdlib/stats/base/stdevyc' ),
18651865
'type': 'Function',
18661866
'related': [
1867-
'@stdlib/stats/base/dstdevyc',
1867+
'@stdlib/stats/strided/dstdevyc',
18681868
'@stdlib/stats/base/nanstdevyc',
18691869
'@stdlib/stats/base/sstdevyc',
18701870
'@stdlib/stats/base/stdev',

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The namespace contains the following statistical functions:
111111
- <span class="signature">[`dstdevpn( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a two-pass algorithm.</span>
112112
- <span class="signature">[`dstdevtk( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevtk]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass textbook algorithm.</span>
113113
- <span class="signature">[`dstdevwd( N, correction, x, strideX )`][@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>
114-
- <span class="signature">[`dstdevyc( N, correction, x, strideX )`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
114+
- <span class="signature">[`dstdevyc( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
115115
- <span class="signature">[`dsvariance( N, correction, x, strideX )`][@stdlib/stats/base/dsvariance]</span><span class="delimiter">: </span><span class="description">calculate the variance of a single-precision floating-point strided array using extended accumulation and returning an extended precision result.</span>
116116
- <span class="signature">[`dsvariancepn( N, correction, x, strideX )`][@stdlib/stats/base/dsvariancepn]</span><span class="delimiter">: </span><span class="description">calculate the variance of a single-precision floating-point strided array using a two-pass algorithm with extended accumulation and returning an extended precision result.</span>
117117
- <span class="signature">[`dvariance( N, correction, x, strideX )`][@stdlib/stats/base/dvariance]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array.</span>
@@ -407,7 +407,7 @@ console.log( objectKeys( ns ) );
407407

408408
[@stdlib/stats/strided/dstdevwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dstdevwd
409409

410-
[@stdlib/stats/base/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dstdevyc
410+
[@stdlib/stats/strided/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dstdevyc
411411

412412
[@stdlib/stats/base/dsvariance]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dsvariance
413413

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ int main( void ) {
349349
## See Also
350350
351351
- <span class="package-name">[`@stdlib/stats/strided/dnanvarianceyc`][@stdlib/stats/strided/dnanvarianceyc]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
352-
- <span class="package-name">[`@stdlib/stats/base/dstdevyc`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
352+
- <span class="package-name">[`@stdlib/stats/strided/dstdevyc`][@stdlib/stats/strided/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
353353
- <span class="package-name">[`@stdlib/stats/base/dvariance`][@stdlib/stats/base/dvariance]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array.</span>
354354
- <span class="package-name">[`@stdlib/stats/base/svarianceyc`][@stdlib/stats/base/svarianceyc]</span><span class="delimiter">: </span><span class="description">calculate the variance of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
355355
- <span class="package-name">[`@stdlib/stats/base/varianceyc`][@stdlib/stats/base/varianceyc]</span><span class="delimiter">: </span><span class="description">calculate the variance of a strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
@@ -374,7 +374,7 @@ int main( void ) {
374374
375375
[@stdlib/stats/strided/dnanvarianceyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanvarianceyc
376376
377-
[@stdlib/stats/base/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dstdevyc
377+
[@stdlib/stats/strided/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dstdevyc
378378
379379
[@stdlib/stats/base/dvariance]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dvariance
380380

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ int main( void ) {
348348
349349
## See Also
350350
351-
- <span class="package-name">[`@stdlib/stats/base/dstdevyc`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
351+
- <span class="package-name">[`@stdlib/stats/strided/dstdevyc`][@stdlib/stats/strided/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
352352
- <span class="package-name">[`@stdlib/stats/base/snanstdevyc`][@stdlib/stats/base/snanstdevyc]</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 a one-pass algorithm proposed by Youngs and Cramer.</span>
353353
- <span class="package-name">[`@stdlib/stats/base/sstdev`][@stdlib/stats/base/sstdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array.</span>
354354
- <span class="package-name">[`@stdlib/stats/base/stdevyc`][@stdlib/stats/base/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>
@@ -372,7 +372,7 @@ int main( void ) {
372372
373373
<!-- <related-links> -->
374374
375-
[@stdlib/stats/base/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dstdevyc
375+
[@stdlib/stats/strided/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dstdevyc
376376
377377
[@stdlib/stats/base/snanstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanstdevyc
378378

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ var v = stdevyc.ndarray( N, 1, x, 2, 1 );
182182

183183
- If `N <= 0`, both functions return `NaN`.
184184
- If `N - c` is less than or equal to `0` (where `c` corresponds to the provided degrees of freedom adjustment), both functions return `NaN`.
185-
- Depending on the environment, the typed versions ([`dstdevyc`][@stdlib/stats/base/dstdevyc], [`sstdevyc`][@stdlib/stats/base/sstdevyc], etc.) are likely to be significantly more performant.
185+
- Depending on the environment, the typed versions ([`dstdevyc`][@stdlib/stats/strided/dstdevyc], [`sstdevyc`][@stdlib/stats/base/sstdevyc], etc.) are likely to be significantly more performant.
186186

187187
</section>
188188

@@ -237,7 +237,7 @@ console.log( v );
237237

238238
## See Also
239239

240-
- <span class="package-name">[`@stdlib/stats/base/dstdevyc`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
240+
- <span class="package-name">[`@stdlib/stats/strided/dstdevyc`][@stdlib/stats/strided/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
241241
- <span class="package-name">[`@stdlib/stats/base/nanstdevyc`][@stdlib/stats/base/nanstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
242242
- <span class="package-name">[`@stdlib/stats/base/sstdevyc`][@stdlib/stats/base/sstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
243243
- <span class="package-name">[`@stdlib/stats/base/stdev`][@stdlib/stats/base/stdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array.</span>
@@ -261,7 +261,7 @@ console.log( v );
261261

262262
<!-- <related-links> -->
263263

264-
[@stdlib/stats/base/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dstdevyc
264+
[@stdlib/stats/strided/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dstdevyc
265265

266266
[@stdlib/stats/base/nanstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/nanstdevyc
267267

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ int main( void ) {
361361
362362
- <span class="package-name">[`@stdlib/stats/base/dnanstdev`][@stdlib/stats/base/dnanstdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array ignoring NaN values.</span>
363363
- <span class="package-name">[`@stdlib/stats/strided/dnanvarianceyc`][@stdlib/stats/strided/dnanvarianceyc]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
364-
- <span class="package-name">[`@stdlib/stats/base/dstdevyc`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
364+
- <span class="package-name">[`@stdlib/stats/strided/dstdevyc`][@stdlib/stats/strided/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
365365
- <span class="package-name">[`@stdlib/stats/base/nanstdevyc`][@stdlib/stats/base/nanstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
366366
- <span class="package-name">[`@stdlib/stats/base/snanstdevyc`][@stdlib/stats/base/snanstdevyc]</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 a one-pass algorithm proposed by Youngs and Cramer.</span>
367367
@@ -387,7 +387,7 @@ int main( void ) {
387387
388388
[@stdlib/stats/strided/dnanvarianceyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanvarianceyc
389389
390-
[@stdlib/stats/base/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dstdevyc
390+
[@stdlib/stats/strided/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dstdevyc
391391
392392
[@stdlib/stats/base/nanstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/nanstdevyc
393393

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ int main( void ) {
321321
## See Also
322322
323323
- <span class="package-name">[`@stdlib/stats/base/dsem`][@stdlib/stats/base/dsem]</span><span class="delimiter">: </span><span class="description">calculate the standard error of the mean for a double-precision floating-point strided array.</span>
324-
- <span class="package-name">[`@stdlib/stats/base/dstdevyc`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
324+
- <span class="package-name">[`@stdlib/stats/strided/dstdevyc`][@stdlib/stats/strided/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
325325
326326
</section>
327327
@@ -345,7 +345,7 @@ int main( void ) {
345345
346346
[@stdlib/stats/base/dsem]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dsem
347347
348-
[@stdlib/stats/base/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dstdevyc
348+
[@stdlib/stats/strided/dstdevyc]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dstdevyc
349349
350350
<!-- </related-links> -->
351351

0 commit comments

Comments
 (0)