Skip to content

Commit 77d2a66

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

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
@@ -93,7 +93,6 @@ import nanvariancewd = require( '@stdlib/stats/base/nanvariancewd' );
9393
import nanvarianceyc = require( '@stdlib/stats/base/nanvarianceyc' );
9494
import range = require( '@stdlib/stats/base/range' );
9595
import rangeBy = require( '@stdlib/stats/base/range-by' );
96-
import sdsmeanors = require( '@stdlib/stats/base/sdsmeanors' );
9796
import sdsnanmean = require( '@stdlib/stats/base/sdsnanmean' );
9897
import sdsnanmeanors = require( '@stdlib/stats/base/sdsnanmeanors' );
9998
import smax = require( '@stdlib/stats/base/smax' );
@@ -2111,32 +2110,6 @@ interface Namespace {
21112110
*/
21122111
rangeBy: typeof rangeBy;
21132112

2114-
/**
2115-
* Computes the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation.
2116-
*
2117-
* @param N - number of indexed elements
2118-
* @param x - input array
2119-
* @param strideX - stride length
2120-
* @returns arithmetic mean
2121-
*
2122-
* @example
2123-
* var Float32Array = require( '@stdlib/array/float32' );
2124-
*
2125-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
2126-
*
2127-
* var v = ns.sdsmeanors( x.length, x, 1 );
2128-
* // returns ~0.3333
2129-
*
2130-
* @example
2131-
* var Float32Array = require( '@stdlib/array/float32' );
2132-
*
2133-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
2134-
*
2135-
* var v = ns.sdsmeanors.ndarray( x.length, x, 1, 0 );
2136-
* // returns ~0.3333
2137-
*/
2138-
sdsmeanors: typeof sdsmeanors;
2139-
21402113
/**
21412114
* Computes the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using extended accumulation.
21422115
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -693,15 +693,6 @@ setReadOnly( ns, 'range', require( '@stdlib/stats/base/range' ) );
693693
*/
694694
setReadOnly( ns, 'rangeBy', require( '@stdlib/stats/base/range-by' ) );
695695

696-
/**
697-
* @name sdsmeanors
698-
* @memberof ns
699-
* @readonly
700-
* @type {Function}
701-
* @see {@link module:@stdlib/stats/base/sdsmeanors}
702-
*/
703-
setReadOnly( ns, 'sdsmeanors', require( '@stdlib/stats/base/sdsmeanors' ) );
704-
705696
/**
706697
* @name sdsnanmean
707698
* @memberof ns

0 commit comments

Comments
 (0)