Skip to content

Commit 3d48d54

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

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

-27
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ import dnanstdev = require( '@stdlib/stats/base/dnanstdev' );
4242
import dsem = require( '@stdlib/stats/base/dsem' );
4343
import dsempn = require( '@stdlib/stats/base/dsempn' );
4444
import dsmeanors = require( '@stdlib/stats/base/dsmeanors' );
45-
import dsnanmeanors = require( '@stdlib/stats/base/dsnanmeanors' );
4645
import dsnanmeanpn = require( '@stdlib/stats/base/dsnanmeanpn' );
4746
import dsnanmeanwd = require( '@stdlib/stats/base/dsnanmeanwd' );
4847
import dstdev = require( '@stdlib/stats/base/dstdev' );
@@ -820,32 +819,6 @@ interface Namespace {
820819
*/
821820
dsmeanors: typeof dsmeanors;
822821

823-
/**
824-
* Computes the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using ordinary recursive summation with extended accumulation, and returning an extended precision result.
825-
*
826-
* @param N - number of indexed elements
827-
* @param x - input array
828-
* @param strideX - stride length
829-
* @returns arithmetic mean
830-
*
831-
* @example
832-
* var Float32Array = require( '@stdlib/array/float32' );
833-
*
834-
* var x = new Float32Array( [ 1.0, -2.0, NaN, 2.0 ] );
835-
*
836-
* var v = ns.dsnanmeanors( x.length, x, 1 );
837-
* // returns ~0.3333
838-
*
839-
* @example
840-
* var Float32Array = require( '@stdlib/array/float32' );
841-
*
842-
* var x = new Float32Array( [ 1.0, -2.0, NaN, 2.0 ] );
843-
*
844-
* var v = ns.dsnanmeanors.ndarray( x.length, x, 1, 0 );
845-
* // returns ~0.3333
846-
*/
847-
dsnanmeanors: typeof dsnanmeanors;
848-
849822
/**
850823
* Computes the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using a two-pass error correction algorithm with extended accumulation, and returning an extended precision result.
851824
*

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

-9
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,6 @@ setReadOnly( ns, 'dsempn', require( '@stdlib/stats/base/dsempn' ) );
234234
*/
235235
setReadOnly( ns, 'dsmeanors', require( '@stdlib/stats/base/dsmeanors' ) );
236236

237-
/**
238-
* @name dsnanmeanors
239-
* @memberof ns
240-
* @readonly
241-
* @type {Function}
242-
* @see {@link module:@stdlib/stats/base/dsnanmeanors}
243-
*/
244-
setReadOnly( ns, 'dsnanmeanors', require( '@stdlib/stats/base/dsnanmeanors' ) );
245-
246237
/**
247238
* @name dsnanmeanpn
248239
* @memberof ns

0 commit comments

Comments
 (0)