Skip to content

Commit a088915

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

File tree

2 files changed

+0
-37
lines changed

2 files changed

+0
-37
lines changed

lib/node_modules/@stdlib/stats/base/docs/types/index.d.ts

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import dmeanstdev = require( '@stdlib/stats/base/dmeanstdev' );
2929
import dmeanstdevpn = require( '@stdlib/stats/base/dmeanstdevpn' );
3030
import dmeanvar = require( '@stdlib/stats/base/dmeanvar' );
3131
import dmeanvarpn = require( '@stdlib/stats/base/dmeanvarpn' );
32-
import dsempn = require( '@stdlib/stats/base/dsempn' );
3332
import dvarm = require( '@stdlib/stats/base/dvarm' );
3433
import dvarmpn = require( '@stdlib/stats/base/dvarmpn' );
3534
import max = require( '@stdlib/stats/base/max' );
@@ -368,33 +367,6 @@ interface Namespace {
368367
*/
369368
dmeanvarpn: typeof dmeanvarpn;
370369

371-
/**
372-
* Computes the standard error of the mean for a double-precision floating-point strided array using a two-pass algorithm.
373-
*
374-
* @param N - number of indexed elements
375-
* @param correction - degrees of freedom adjustment
376-
* @param x - input array
377-
* @param stride - stride length
378-
* @returns standard error of the mean
379-
*
380-
* @example
381-
* var Float64Array = require( '@stdlib/array/float64' );
382-
*
383-
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
384-
*
385-
* var v = ns.dsempn( x.length, 1, x, 1 );
386-
* // returns ~1.20185
387-
*
388-
* @example
389-
* var Float64Array = require( '@stdlib/array/float64' );
390-
*
391-
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
392-
*
393-
* var v = ns.dsempn.ndarray( x.length, 1, x, 1, 0 );
394-
* // returns ~1.20185
395-
*/
396-
dsempn: typeof dsempn;
397-
398370
/**
399371
* Computes the variance of a double-precision floating-point strided array provided a known mean.
400372
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,6 @@ setReadOnly( ns, 'dmeanvar', require( '@stdlib/stats/base/dmeanvar' ) );
117117
*/
118118
setReadOnly( ns, 'dmeanvarpn', require( '@stdlib/stats/base/dmeanvarpn' ) );
119119

120-
/**
121-
* @name dsempn
122-
* @memberof ns
123-
* @readonly
124-
* @type {Function}
125-
* @see {@link module:@stdlib/stats/base/dsempn}
126-
*/
127-
setReadOnly( ns, 'dsempn', require( '@stdlib/stats/base/dsempn' ) );
128-
129120
/**
130121
* @name dvarm
131122
* @memberof ns

0 commit comments

Comments
 (0)