Skip to content

Commit c853a82

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

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
@@ -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 dsnanmeanwd = require( '@stdlib/stats/base/dsnanmeanwd' );
4645
import dstdev = require( '@stdlib/stats/base/dstdev' );
4746
import dstdevch = require( '@stdlib/stats/base/dstdevch' );
4847
import dstdevpn = require( '@stdlib/stats/base/dstdevpn' );
@@ -818,32 +817,6 @@ interface Namespace {
818817
*/
819818
dsmeanors: typeof dsmeanors;
820819

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

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

Lines changed: 0 additions & 9 deletions
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 dsnanmeanwd
239-
* @memberof ns
240-
* @readonly
241-
* @type {Function}
242-
* @see {@link module:@stdlib/stats/base/dsnanmeanwd}
243-
*/
244-
setReadOnly( ns, 'dsnanmeanwd', require( '@stdlib/stats/base/dsnanmeanwd' ) );
245-
246237
/**
247238
* @name dstdev
248239
* @memberof ns

0 commit comments

Comments
 (0)