Skip to content

Commit bb60f0e

Browse files
aayush0325kgryte
authored andcommitted
remove: remove stats/base/dnanmeanpn from namespace
This commit removes the `dnanmeanpn` symbol from the `@stdlib/stats/base` namespace due to a package migration. BREAKING CHANGE: remove `stats/base/dnanmeanpn` To migrate, users should access the same symbol via the `@stdlib/stats/strided/dnanmeanpn` namespace. 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: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 125bc3d commit bb60f0e

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

lib/node_modules/@stdlib/stats/base/docs/types/index.d.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ import dmeanvarpn = require( '@stdlib/stats/base/dmeanvarpn' );
3535
import dmskmax = require( '@stdlib/stats/base/dmskmax' );
3636
import dmskmin = require( '@stdlib/stats/base/dmskmin' );
3737
import dmskrange = require( '@stdlib/stats/base/dmskrange' );
38-
import dnanmeanpn = require( '@stdlib/stats/base/dnanmeanpn' );
3938
import dnanmeanpw = require( '@stdlib/stats/base/dnanmeanpw' );
4039
import dnanmeanwd = require( '@stdlib/stats/base/dnanmeanwd' );
4140
import dnanminabs = require( '@stdlib/stats/base/dnanminabs' );
@@ -643,32 +642,6 @@ interface Namespace {
643642
*/
644643
dmskrange: typeof dmskrange;
645644

646-
/**
647-
* Computes the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.
648-
*
649-
* @param N - number of indexed elements
650-
* @param x - input array
651-
* @param strideX - stride length
652-
* @returns arithmetic mean
653-
*
654-
* @example
655-
* var Float64Array = require( '@stdlib/array/float64' );
656-
*
657-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
658-
*
659-
* var v = ns.dnanmeanpn( x.length, x, 1 );
660-
* // returns ~0.3333
661-
*
662-
* @example
663-
* var Float64Array = require( '@stdlib/array/float64' );
664-
*
665-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
666-
*
667-
* var v = ns.dnanmeanpn.ndarray( x.length, x, 1, 0 );
668-
* // returns ~0.3333
669-
*/
670-
dnanmeanpn: typeof dnanmeanpn;
671-
672645
/**
673646
* Computes the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using pairwise summation.
674647
*

lib/node_modules/@stdlib/stats/base/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,6 @@ setReadOnly( ns, 'dmskmin', require( '@stdlib/stats/base/dmskmin' ) );
171171
*/
172172
setReadOnly( ns, 'dmskrange', require( '@stdlib/stats/base/dmskrange' ) );
173173

174-
/**
175-
* @name dnanmeanpn
176-
* @memberof ns
177-
* @readonly
178-
* @type {Function}
179-
* @see {@link module:@stdlib/stats/base/dnanmeanpn}
180-
*/
181-
setReadOnly( ns, 'dnanmeanpn', require( '@stdlib/stats/base/dnanmeanpn' ) );
182-
183174
/**
184175
* @name dnanmeanpw
185176
* @memberof ns

0 commit comments

Comments
 (0)