Skip to content

Commit c83bd2e

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

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
@@ -37,7 +37,6 @@ import dnanmskrange = require( '@stdlib/stats/base/dnanmskrange' );
3737
import dnanstdev = require( '@stdlib/stats/base/dnanstdev' );
3838
import dsem = require( '@stdlib/stats/base/dsem' );
3939
import dsempn = require( '@stdlib/stats/base/dsempn' );
40-
import dsmeanors = require( '@stdlib/stats/base/dsmeanors' );
4140
import dstdev = require( '@stdlib/stats/base/dstdev' );
4241
import dvarm = require( '@stdlib/stats/base/dvarm' );
4342
import dvarmpn = require( '@stdlib/stats/base/dvarmpn' );
@@ -610,32 +609,6 @@ interface Namespace {
610609
*/
611610
dsempn: typeof dsempn;
612611

613-
/**
614-
* Computes the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.
615-
*
616-
* @param N - number of indexed elements
617-
* @param x - input array
618-
* @param strideX - stride length
619-
* @returns arithmetic mean
620-
*
621-
* @example
622-
* var Float32Array = require( '@stdlib/array/float32' );
623-
*
624-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
625-
*
626-
* var v = ns.dsmeanors( x.length, x, 1 );
627-
* // returns ~0.3333
628-
*
629-
* @example
630-
* var Float32Array = require( '@stdlib/array/float32' );
631-
*
632-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
633-
*
634-
* var v = ns.dsmeanors.ndarray( x.length, x, 1, 0 );
635-
* // returns ~0.3333
636-
*/
637-
dsmeanors: typeof dsmeanors;
638-
639612
/**
640613
* Computes the standard deviation of a double-precision floating-point strided array.
641614
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,6 @@ setReadOnly( ns, 'dsem', require( '@stdlib/stats/base/dsem' ) );
189189
*/
190190
setReadOnly( ns, 'dsempn', require( '@stdlib/stats/base/dsempn' ) );
191191

192-
/**
193-
* @name dsmeanors
194-
* @memberof ns
195-
* @readonly
196-
* @type {Function}
197-
* @see {@link module:@stdlib/stats/base/dsmeanors}
198-
*/
199-
setReadOnly( ns, 'dsmeanors', require( '@stdlib/stats/base/dsmeanors' ) );
200-
201192
/**
202193
* @name dstdev
203194
* @memberof ns

0 commit comments

Comments
 (0)