You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
remove: remove stats/base/dnanvarianceyc from namespace
This commit removes the `dnanvarianceyc` symbol from the `@stdlib/stats/base` namespace due to a package migration.
BREAKING CHANGE: remove `stats/base/dnanvarianceyc`
To migrate, users should access the same symbol via the `@stdlib/stats/strided/dnanvarianceyc` 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
---
* Computes the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.
756
-
*
757
-
* @param N - number of indexed elements
758
-
* @param correction - degrees of freedom adjustment
759
-
* @param x - input array
760
-
* @param strideX - stride length
761
-
* @returns variance
762
-
*
763
-
* @example
764
-
* var Float64Array = require( '@stdlib/array/float64' );
765
-
*
766
-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
767
-
*
768
-
* var v = ns.dnanvarianceyc( x.length, 1, x, 1 );
769
-
* // returns ~4.3333
770
-
*
771
-
* @example
772
-
* var Float64Array = require( '@stdlib/array/float64' );
773
-
*
774
-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
775
-
*
776
-
* var v = ns.dnanvarianceyc.ndarray( x.length, 1, x, 1, 0 );
777
-
* // returns ~4.3333
778
-
*/
779
-
dnanvarianceyc: typeofdnanvarianceyc;
780
-
781
753
/**
782
754
* Computes the range of a double-precision floating-point strided array.
0 commit comments