Skip to content

Commit 42c8147

Browse files
committed
remove: remove dnanmeanors from namespace
This commit removes the `dnanmeanors` symbol from the `@stdlib/stats/base` namespace due to a package migration. BREAKING CHANGE: remove `dnanmeanors` To migrate, users should access the same symbol via the `@stdlib/stats/strided` namespace. --- 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 4e780e0 commit 42c8147

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 dnanmeanors = require( '@stdlib/stats/base/dnanmeanors' );
3938
import dnanmeanpn = require( '@stdlib/stats/base/dnanmeanpn' );
4039
import dnanmeanpw = require( '@stdlib/stats/base/dnanmeanpw' );
4140
import dnanmeanwd = require( '@stdlib/stats/base/dnanmeanwd' );
@@ -645,32 +644,6 @@ interface Namespace {
645644
*/
646645
dmskrange: typeof dmskrange;
647646

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

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 dnanmeanors
176-
* @memberof ns
177-
* @readonly
178-
* @type {Function}
179-
* @see {@link module:@stdlib/stats/base/dnanmeanors}
180-
*/
181-
setReadOnly( ns, 'dnanmeanors', require( '@stdlib/stats/base/dnanmeanors' ) );
182-
183174
/**
184175
* @name dnanmeanpn
185176
* @memberof ns

0 commit comments

Comments
 (0)