Skip to content

Commit ac97159

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 c83bd2e commit ac97159

File tree

3 files changed

+7
-7
lines changed
  • lib/node_modules/@stdlib

3 files changed

+7
-7
lines changed

Diff for: lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/d.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1690,8 +1690,8 @@ ns.push({
16901690

16911691
ns.push({
16921692
'alias': 'base.strided.dsmeanors',
1693-
'path': '@stdlib/stats/base/dsmeanors',
1694-
'value': require( '@stdlib/stats/base/dsmeanors' ),
1693+
'path': '@stdlib/stats/strided/dsmeanors',
1694+
'value': require( '@stdlib/stats/strided/dsmeanors' ),
16951695
'type': 'Function',
16961696
'related': [
16971697
'@stdlib/stats/strided/dmeanors',
@@ -1765,7 +1765,7 @@ ns.push({
17651765
'type': 'Function',
17661766
'related': [
17671767
'@stdlib/stats/strided/dnanmeanors',
1768-
'@stdlib/stats/base/dsmeanors',
1768+
'@stdlib/stats/strided/dsmeanors',
17691769
'@stdlib/stats/strided/dsnanmean',
17701770
'@stdlib/stats/base/nanmeanors',
17711771
'@stdlib/stats/base/sdsnanmean',

Diff for: lib/node_modules/@stdlib/stats/base/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The namespace contains the following statistical functions:
9898
- <span class="signature">[`dsemwd( N, correction, x, strideX )`][@stdlib/stats/strided/dsemwd]</span><span class="delimiter">: </span><span class="description">calculate the standard error of the mean of a double-precision floating-point strided array using Welford's algorithm.</span>
9999
- <span class="signature">[`dsemyc( N, correction, x, strideX )`][@stdlib/stats/strided/dsemyc]</span><span class="delimiter">: </span><span class="description">calculate the standard error of the mean of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
100100
- <span class="signature">[`dsmean( N, x, strideX )`][@stdlib/stats/strided/dsmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation and returning an extended precision result.</span>
101-
- <span class="signature">[`dsmeanors( N, x, strideX )`][@stdlib/stats/base/dsmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.</span>
101+
- <span class="signature">[`dsmeanors( N, x, strideX )`][@stdlib/stats/strided/dsmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.</span>
102102
- <span class="signature">[`dsmeanpn( N, x, strideX )`][@stdlib/stats/strided/dsmeanpn]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm with extended accumulation and returning an extended precision result.</span>
103103
- <span class="signature">[`dsmeanpw( N, x, strideX )`][@stdlib/stats/strided/dsmeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation with extended accumulation and returning an extended precision result.</span>
104104
- <span class="signature">[`dsmeanwd( N, x, strideX )`][@stdlib/stats/strided/dsmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and returning an extended precision result.</span>
@@ -381,7 +381,7 @@ console.log( objectKeys( ns ) );
381381

382382
[@stdlib/stats/strided/dsmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dsmean
383383

384-
[@stdlib/stats/base/dsmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dsmeanors
384+
[@stdlib/stats/strided/dsmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dsmeanors
385385

386386
[@stdlib/stats/strided/dsmeanpn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dsmeanpn
387387

Diff for: lib/node_modules/@stdlib/stats/strided/dsnanmeanors/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ int main( void ) {
309309
## See Also
310310
311311
- <span class="package-name">[`@stdlib/stats/strided/dnanmeanors`][@stdlib/stats/strided/dnanmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring NaN values and using ordinary recursive summation.</span>
312-
- <span class="package-name">[`@stdlib/stats/base/dsmeanors`][@stdlib/stats/base/dsmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.</span>
312+
- <span class="package-name">[`@stdlib/stats/strided/dsmeanors`][@stdlib/stats/strided/dsmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.</span>
313313
- <span class="package-name">[`@stdlib/stats/strided/dsnanmean`][@stdlib/stats/strided/dsnanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values, using extended accumulation, and returning an extended precision result.</span>
314314
- <span class="package-name">[`@stdlib/stats/base/nanmeanors`][@stdlib/stats/base/nanmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array, ignoring NaN values and using ordinary recursive summation.</span>
315315
- <span class="package-name">[`@stdlib/stats/base/sdsnanmean`][@stdlib/stats/base/sdsnanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using extended accumulation.</span>
@@ -333,7 +333,7 @@ int main( void ) {
333333
334334
[@stdlib/stats/strided/dnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanmeanors
335335
336-
[@stdlib/stats/base/dsmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dsmeanors
336+
[@stdlib/stats/strided/dsmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dsmeanors
337337
338338
[@stdlib/stats/strided/dsnanmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dsnanmean
339339

0 commit comments

Comments
 (0)