Skip to content

Commit 3167368

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 ea21f0b commit 3167368

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ ns.push({
581581
'related': [
582582
'@stdlib/stats/strided/dmean',
583583
'@stdlib/stats/strided/dnanmeanpw',
584-
'@stdlib/stats/base/meanpw',
584+
'@stdlib/stats/strided/meanpw',
585585
'@stdlib/stats/strided/smeanpw'
586586
]
587587
});
@@ -1725,7 +1725,7 @@ ns.push({
17251725
'@stdlib/stats/strided/dmeanpw',
17261726
'@stdlib/stats/strided/dsmean',
17271727
'@stdlib/stats/base/dsnanmeanpw',
1728-
'@stdlib/stats/base/meanpw',
1728+
'@stdlib/stats/strided/meanpw',
17291729
'@stdlib/stats/strided/smeanpw'
17301730
]
17311731
});

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ ns.push({
179179

180180
ns.push({
181181
'alias': 'base.strided.meanpw',
182-
'path': '@stdlib/stats/base/meanpw',
183-
'value': require( '@stdlib/stats/base/meanpw' ),
182+
'path': '@stdlib/stats/strided/meanpw',
183+
'value': require( '@stdlib/stats/strided/meanpw' ),
184184
'type': 'Function',
185185
'related': [
186186
'@stdlib/stats/strided/dmeanpw',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ ns.push({
725725
'type': 'Function',
726726
'related': [
727727
'@stdlib/stats/strided/dmeanpw',
728-
'@stdlib/stats/base/meanpw',
728+
'@stdlib/stats/strided/meanpw',
729729
'@stdlib/stats/strided/smean',
730730
'@stdlib/stats/base/snanmeanpw'
731731
]

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

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

3131

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The namespace contains the following statistical functions:
6969
- <span class="signature">[`dvarmpn( N, mean, correction, x, stride )`][@stdlib/stats/base/dvarmpn]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array provided a known mean and using Neely's correction algorithm.</span>
7070
- <span class="signature">[`meanors( N, x, stride )`][@stdlib/stats/strided/meanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
7171
- <span class="signature">[`meanpn( N, x, strideX )`][@stdlib/stats/strided/meanpn]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using a two-pass error correction algorithm.</span>
72-
- <span class="signature">[`meanpw( N, x, stride )`][@stdlib/stats/base/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
72+
- <span class="signature">[`meanpw( N, x, stride )`][@stdlib/stats/strided/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
7373
- <span class="signature">[`meanwd( N, x, strideX )`][@stdlib/stats/base/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
7474
- <span class="signature">[`nanmean( N, x, stride )`][@stdlib/stats/base/nanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values.</span>
7575
- <span class="signature">[`nanmeanors( N, x, stride )`][@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>
@@ -203,7 +203,7 @@ console.log( objectKeys( ns ) );
203203

204204
[@stdlib/stats/strided/meanpn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/meanpn
205205

206-
[@stdlib/stats/base/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/meanpw
206+
[@stdlib/stats/strided/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/meanpw
207207

208208
[@stdlib/stats/base/meanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/meanwd
209209

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ int main( void ) {
300300
301301
- <span class="package-name">[`@stdlib/stats/strided/dmean`][@stdlib/stats/strided/dmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array.</span>
302302
- <span class="package-name">[`@stdlib/stats/strided/dnanmeanpw`][@stdlib/stats/strided/dnanmeanpw]</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 pairwise summation.</span>
303-
- <span class="package-name">[`@stdlib/stats/base/meanpw`][@stdlib/stats/base/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
303+
- <span class="package-name">[`@stdlib/stats/strided/meanpw`][@stdlib/stats/strided/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
304304
- <span class="package-name">[`@stdlib/stats/strided/smeanpw`][@stdlib/stats/strided/smeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
305305
306306
</section>
@@ -325,7 +325,7 @@ int main( void ) {
325325
326326
[@stdlib/stats/strided/dnanmeanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanmeanpw
327327
328-
[@stdlib/stats/base/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/meanpw
328+
[@stdlib/stats/strided/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/meanpw
329329
330330
[@stdlib/stats/strided/smeanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/smeanpw
331331

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ int main( void ) {
301301
302302
- <span class="package-name">[`@stdlib/stats/strided/dmeanpw`][@stdlib/stats/strided/dmeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using pairwise summation.</span>
303303
- <span class="package-name">[`@stdlib/stats/strided/dsmean`][@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>
304-
- <span class="package-name">[`@stdlib/stats/base/meanpw`][@stdlib/stats/base/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
304+
- <span class="package-name">[`@stdlib/stats/strided/meanpw`][@stdlib/stats/strided/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
305305
- <span class="package-name">[`@stdlib/stats/strided/smeanpw`][@stdlib/stats/strided/smeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
306306
307307
</section>
@@ -326,7 +326,7 @@ int main( void ) {
326326
327327
[@stdlib/stats/strided/dsmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dsmean
328328
329-
[@stdlib/stats/base/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/meanpw
329+
[@stdlib/stats/strided/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/meanpw
330330
331331
[@stdlib/stats/strided/smeanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/smeanpw
332332

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ int main( void ) {
299299
## See Also
300300
301301
- <span class="package-name">[`@stdlib/stats/strided/dmeanpw`][@stdlib/stats/strided/dmeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using pairwise summation.</span>
302-
- <span class="package-name">[`@stdlib/stats/base/meanpw`][@stdlib/stats/base/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
302+
- <span class="package-name">[`@stdlib/stats/strided/meanpw`][@stdlib/stats/strided/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
303303
- <span class="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
304304
305305
</section>
@@ -322,7 +322,7 @@ int main( void ) {
322322
323323
[@stdlib/stats/strided/dmeanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dmeanpw
324324
325-
[@stdlib/stats/base/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/meanpw
325+
[@stdlib/stats/strided/meanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/meanpw
326326
327327
[@stdlib/stats/strided/smean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/smean
328328

0 commit comments

Comments
 (0)