Skip to content

Commit d2c3b4d

Browse files
committed
remove: remove dsem from namespace
This commit removes the `dsem` symbol from the `@stdlib/stats/base` namespace due to a package migration. BREAKING CHANGE: remove `dsem` 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 e471303 commit d2c3b4d

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 dsem = require( '@stdlib/stats/base/dsem' );
3332
import dsempn = require( '@stdlib/stats/base/dsempn' );
3433
import dvarm = require( '@stdlib/stats/base/dvarm' );
3534
import dvarmpn = require( '@stdlib/stats/base/dvarmpn' );
@@ -369,33 +368,6 @@ interface Namespace {
369368
*/
370369
dmeanvarpn: typeof dmeanvarpn;
371370

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

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 dsem
122-
* @memberof ns
123-
* @readonly
124-
* @type {Function}
125-
* @see {@link module:@stdlib/stats/base/dsem}
126-
*/
127-
setReadOnly( ns, 'dsem', require( '@stdlib/stats/base/dsem' ) );
128-
129120
/**
130121
* @name dsempn
131122
* @memberof ns

0 commit comments

Comments
 (0)