stats-strided

Statistical operations for strided arrays.

https://github.com/stdlib-js/stats-strided

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.5%) to scientific vocabulary

Keywords

array javascript namespace ndarray node node-js nodejs statistics stats stdlib strided vector
Last synced: 6 months ago · JSON representation ·

Repository

Statistical operations for strided arrays.

Basic Info
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
array javascript namespace ndarray node node-js nodejs statistics stats stdlib strided vector
Created 9 months ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

Statistics

NPM version Build Status Coverage Status <!-- dependencies -->

Statistical operations for strided arrays.

## Installation ```bash npm install @stdlib/stats-strided ``` Alternatively, - To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]). - If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions). - For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]). The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships. To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
## Usage ```javascript var ns = require( '@stdlib/stats-strided' ); ``` #### ns Namespace containing APIs for performing statistical operations on strided arrays. ```javascript var o = ns; // returns {...} ``` The namespace exports the following:
- [`dcumax( N, x, strideX, y, strideY )`][@stdlib/stats/strided/dcumax]: calculate the cumulative maximum of double-precision floating-point strided array elements. - [`dcumaxabs( N, x, strideX, y, strideY )`][@stdlib/stats/strided/dcumaxabs]: calculate the cumulative maximum absolute value of double-precision floating-point strided array elements. - [`dcumin( N, x, strideX, y, strideY )`][@stdlib/stats/strided/dcumin]: calculate the cumulative minimum of double-precision floating-point strided array elements. - [`dcuminabs( N, x, strideX, y, strideY )`][@stdlib/stats/strided/dcuminabs]: calculate the cumulative minimum absolute value of double-precision floating-point strided array elements. - [`dmax( N, x, strideX )`][@stdlib/stats/strided/dmax]: calculate the maximum value of a double-precision floating-point strided array. - [`dmaxabs( N, x, strideX )`][@stdlib/stats/strided/dmaxabs]: calculate the maximum absolute value of a double-precision floating-point strided array. - [`dmaxabssorted( N, x, strideX )`][@stdlib/stats/strided/dmaxabssorted]: calculate the maximum absolute value of a sorted double-precision floating-point strided array. - [`dmaxsorted( N, x, strideX )`][@stdlib/stats/strided/dmaxsorted]: calculate the maximum value of a sorted double-precision floating-point strided array. - [`dmean( N, x, strideX )`][@stdlib/stats/strided/dmean]: calculate the arithmetic mean of a double-precision floating-point strided array. - [`dmeankbn( N, x, strideX )`][@stdlib/stats/strided/dmeankbn]: calculate the arithmetic mean of a double-precision floating-point strided array using an improved Kahan–Babuška algorithm. - [`dmeankbn2( N, x, strideX )`][@stdlib/stats/strided/dmeankbn2]: calculate the arithmetic mean of a double-precision floating-point strided array using a second-order iterative Kahan–Babuška algorithm. - [`dmeanli( N, x, strideX )`][@stdlib/stats/strided/dmeanli]: calculate the arithmetic mean of a double-precision floating-point strided array using a one-pass trial mean algorithm. - [`dmeanlipw( N, x, strideX )`][@stdlib/stats/strided/dmeanlipw]: calculate the arithmetic mean of a double-precision floating-point strided array using a one-pass trial mean algorithm with pairwise summation. - [`dmeanors( N, x, strideX )`][@stdlib/stats/strided/dmeanors]: calculate the arithmetic mean of a double-precision floating-point strided array using ordinary recursive summation. - [`dmeanpn( N, x, strideX )`][@stdlib/stats/strided/dmeanpn]: calculate the arithmetic mean of a double-precision floating-point strided array using a two-pass error correction algorithm. - [`dmeanpw( N, x, strideX )`][@stdlib/stats/strided/dmeanpw]: calculate the arithmetic mean of a double-precision floating-point strided array using pairwise summation. - [`dmeanwd( N, x, strideX )`][@stdlib/stats/strided/dmeanwd]: calculate the arithmetic mean of a double-precision floating-point strided array using Welford's algorithm. - [`dmediansorted( N, x, strideX )`][@stdlib/stats/strided/dmediansorted]: calculate the median value of a sorted double-precision floating-point strided array. - [`dmidrange( N, x, strideX )`][@stdlib/stats/strided/dmidrange]: calculate the mid-range of a double-precision floating-point strided array. - [`dmin( N, x, strideX )`][@stdlib/stats/strided/dmin]: calculate the minimum value of a double-precision floating-point strided array. - [`dminabs( N, x, strideX )`][@stdlib/stats/strided/dminabs]: calculate the minimum absolute value of a double-precision floating-point strided array. - [`dminsorted( N, x, strideX )`][@stdlib/stats/strided/dminsorted]: calculate the minimum value of a sorted double-precision floating-point strided array. - [`dmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskmax]: calculate the maximum value of a double-precision floating-point strided array according to a mask. - [`dmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskmin]: calculate the minimum value of a double-precision floating-point strided array according to a mask. - [`dmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskrange]: calculate the range of a double-precision floating-point strided array according to a mask. - [`dnanmax( N, x, strideX )`][@stdlib/stats/strided/dnanmax]: calculate the maximum value of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanmaxabs( N, x, strideX )`][@stdlib/stats/strided/dnanmaxabs]: calculate the maximum absolute value of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanmean( N, x, strideX )`][@stdlib/stats/strided/dnanmean]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanmeanors( N, x, strideX )`][@stdlib/stats/strided/dnanmeanors]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation. - [`dnanmeanpn( N, x, strideX )`][@stdlib/stats/strided/dnanmeanpn]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm. - [`dnanmeanpw( N, x, strideX )`][@stdlib/stats/strided/dnanmeanpw]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using pairwise summation. - [`dnanmeanwd( N, x, strideX )`][@stdlib/stats/strided/dnanmeanwd]: calculate the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring `NaN` values. - [`dnanmin( N, x, strideX )`][@stdlib/stats/strided/dnanmin]: calculate the minimum value of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanminabs( N, x, strideX )`][@stdlib/stats/strided/dnanminabs]: calculate the minimum absolute value of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dnanmskmax]: calculate the maximum value of a double-precision floating-point strided array according to a mask, ignoring `NaN` values. - [`dnanmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dnanmskmin]: calculate the minimum value of a double-precision floating-point strided array according to a mask, ignoring `NaN` values. - [`dnanmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dnanmskrange]: calculate the range of a double-precision floating-point strided array according to a mask, ignoring `NaN` values. - [`dnanrange( N, x, strideX )`][@stdlib/stats/strided/dnanrange]: calculate the range of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanstdev( N, correction, x, strideX )`][@stdlib/stats/strided/dnanstdev]: calculate the standard deviation of a double-precision floating-point strided array ignoring `NaN` values. - [`dnanstdevch( N, correction, x, strideX )`][@stdlib/stats/strided/dnanstdevch]: calculate the standard deviation of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass trial mean algorithm. - [`dnanstdevpn( N, correction, x, strideX )`][@stdlib/stats/strided/dnanstdevpn]: calculate the standard deviation of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass algorithm. - [`dnanstdevtk( N, correction, x, strideX )`][@stdlib/stats/strided/dnanstdevtk]: calculate the standard deviation of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass textbook algorithm. - [`dnanstdevwd( N, correction, x, strideX )`][@stdlib/stats/strided/dnanstdevwd]: calculate the standard deviation of a double-precision floating-point strided array ignoring `NaN` values and using Welford's algorithm. - [`dnanstdevyc( N, correction, x, strideX )`][@stdlib/stats/strided/dnanstdevyc]: calculate the standard deviation of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer. - [`dnanvariance( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariance]: calculate the variance of a double-precision floating-point strided array ignoring `NaN` values. - [`dnanvariancech( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariancech]: calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass trial mean algorithm. - [`dnanvariancepn( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariancepn]: calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a two-pass algorithm. - [`dnanvariancetk( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariancetk]: calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass textbook algorithm. - [`dnanvariancewd( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariancewd]: calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using Welford's algorithm. - [`dnanvarianceyc( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvarianceyc]: calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer. - [`drange( N, x, strideX )`][@stdlib/stats/strided/drange]: calculate the range of a double-precision floating-point strided array. - [`dsem( N, correction, x, strideX )`][@stdlib/stats/strided/dsem]: calculate the standard error of the mean of a double-precision floating-point strided array. - [`dsemch( N, correction, x, strideX )`][@stdlib/stats/strided/dsemch]: calculate the standard error of the mean of a double-precision floating-point strided array using a one-pass trial mean algorithm. - [`dsempn( N, correction, x, strideX )`][@stdlib/stats/strided/dsempn]: calculate the standard error of the mean of a double-precision floating-point strided array using a two-pass algorithm. - [`dsemtk( N, correction, x, strideX )`][@stdlib/stats/strided/dsemtk]: calculate the standard error of the mean of a double-precision floating-point strided array using a one-pass textbook algorithm. - [`dsemwd( N, correction, x, strideX )`][@stdlib/stats/strided/dsemwd]: calculate the standard error of the mean of a double-precision floating-point strided array using Welford's algorithm. - [`dsemyc( N, correction, x, strideX )`][@stdlib/stats/strided/dsemyc]: calculate the standard error of the mean of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer. - [`dsmean( N, x, strideX )`][@stdlib/stats/strided/dsmean]: calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation and returning an extended precision result. - [`dsmeanors( N, x, strideX )`][@stdlib/stats/strided/dsmeanors]: calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result. - [`dsmeanpn( N, x, strideX )`][@stdlib/stats/strided/dsmeanpn]: calculate the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm with extended accumulation and returning an extended precision result. - [`dsmeanpw( N, x, strideX )`][@stdlib/stats/strided/dsmeanpw]: calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation with extended accumulation and returning an extended precision result. - [`dsmeanwd( N, x, strideX )`][@stdlib/stats/strided/dsmeanwd]: calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and returning an extended precision result. - [`dsnanmean( N, x, strideX )`][@stdlib/stats/strided/dsnanmean]: calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using extended accumulation, and returning an extended precision result. - [`dsnanmeanors( N, x, strideX )`][@stdlib/stats/strided/dsnanmeanors]: calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using ordinary recursive summation with extended accumulation, and returning an extended precision result. - [`dsnanmeanpn( N, x, strideX )`][@stdlib/stats/strided/dsnanmeanpn]: calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using a two-pass error correction algorithm with extended accumulation, and returning an extended precision result. - [`dsnanmeanwd( N, x, strideX )`][@stdlib/stats/strided/dsnanmeanwd]: calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using Welford's algorithm with extended accumulation, and returning an extended precision result. - [`dstdev( N, correction, x, strideX )`][@stdlib/stats/strided/dstdev]: calculate the standard deviation of a double-precision floating-point strided array. - [`dstdevch( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevch]: calculate the standard deviation of a double-precision floating-point strided array using a one-pass trial mean algorithm. - [`dstdevpn( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevpn]: calculate the standard deviation of a double-precision floating-point strided array using a two-pass algorithm. - [`dstdevtk( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevtk]: calculate the standard deviation of a double-precision floating-point strided array using a one-pass textbook algorithm. - [`dstdevwd( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevwd]: calculate the standard deviation of a double-precision floating-point strided array using Welford's algorithm. - [`dstdevyc( N, correction, x, strideX )`][@stdlib/stats/strided/dstdevyc]: calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer. - [`dsvariance( N, correction, x, strideX )`][@stdlib/stats/strided/dsvariance]: calculate the variance of a single-precision floating-point strided array using extended accumulation and returning an extended precision result. - [`dsvariancepn( N, correction, x, strideX )`][@stdlib/stats/strided/dsvariancepn]: calculate the variance of a single-precision floating-point strided array using a two-pass algorithm with extended accumulation and returning an extended precision result. - [`dvariance( N, correction, x, strideX )`][@stdlib/stats/strided/dvariance]: calculate the variance of a double-precision floating-point strided array. - [`dvariancech( N, correction, x, strideX )`][@stdlib/stats/strided/dvariancech]: calculate the variance of a double-precision floating-point strided array using a one-pass trial mean algorithm. - [`dvariancepn( N, correction, x, strideX )`][@stdlib/stats/strided/dvariancepn]: calculate the variance of a double-precision floating-point strided array using a two-pass algorithm. - [`dvariancetk( N, correction, x, strideX )`][@stdlib/stats/strided/dvariancetk]: calculate the variance of a double-precision floating-point strided array using a one-pass textbook algorithm. - [`dvariancewd( N, correction, x, strideX )`][@stdlib/stats/strided/dvariancewd]: calculate the variance of a double-precision floating-point strided array using Welford's algorithm. - [`dvarianceyc( N, correction, x, strideX )`][@stdlib/stats/strided/dvarianceyc]: calculate the variance of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer. - [`dvarm( N, mean, correction, x, strideX )`][@stdlib/stats/strided/dvarm]: calculate the variance of a double-precision floating-point strided array provided a known mean. - [`dvarmpn( N, mean, correction, x, strideX )`][@stdlib/stats/strided/dvarmpn]: calculate the variance of a double-precision floating-point strided array provided a known mean and using Neely's correction algorithm. - [`dvarmtk( N, mean, correction, x, strideX )`][@stdlib/stats/strided/dvarmtk]: calculate the variance of a double-precision floating-point strided array provided a known mean and using a one-pass textbook algorithm. - [`dztest( N, alternative, alpha, mu, sigma, x, strideX, out )`][@stdlib/stats/strided/dztest]: compute a one-sample Z-test for a double-precision floating-point strided array. - [`maxBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/stats/strided/max-by]: calculate the maximum value of a strided array via a callback function. - [`max( N, x, strideX )`][@stdlib/stats/strided/max]: calculate the maximum value of a strided array. - [`maxabs( N, x, strideX )`][@stdlib/stats/strided/maxabs]: calculate the maximum absolute value of a strided array. - [`maxsorted( N, x, strideX )`][@stdlib/stats/strided/maxsorted]: calculate the maximum value of a sorted strided array. - [`mean( N, x, strideX )`][@stdlib/stats/strided/mean]: calculate the arithmetic mean of a strided array. - [`meankbn( N, x, strideX )`][@stdlib/stats/strided/meankbn]: calculate the arithmetic mean of a strided array using an improved Kahan–Babuška algorithm. - [`meankbn2( N, x, strideX )`][@stdlib/stats/strided/meankbn2]: calculate the arithmetic mean of a strided array using a second-order iterative Kahan–Babuška algorithm. - [`meanors( N, x, strideX )`][@stdlib/stats/strided/meanors]: calculate the arithmetic mean of a strided array using ordinary recursive summation. - [`meanpn( N, x, strideX )`][@stdlib/stats/strided/meanpn]: calculate the arithmetic mean of a strided array using a two-pass error correction algorithm. - [`meanpw( N, x, strideX )`][@stdlib/stats/strided/meanpw]: calculate the arithmetic mean of a strided array using pairwise summation. - [`meanwd( N, x, strideX )`][@stdlib/stats/strided/meanwd]: calculate the arithmetic mean of a strided array using Welford's algorithm. - [`mediansorted( N, x, strideX )`][@stdlib/stats/strided/mediansorted]: calculate the median value of a sorted strided array. - [`minBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/stats/strided/min-by]: calculate the minimum value of a strided array via a callback function. - [`min( N, x, strideX )`][@stdlib/stats/strided/min]: calculate the minimum value of a strided array. - [`minabs( N, x, strideX )`][@stdlib/stats/strided/minabs]: calculate the minimum absolute value of a strided array. - [`minsorted( N, x, strideX )`][@stdlib/stats/strided/minsorted]: calculate the minimum value of a sorted strided array. - [`mskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/mskmax]: calculate the maximum value of a strided array according to a mask. - [`mskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/mskmin]: calculate the minimum value of a strided array according to a mask. - [`mskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/mskrange]: calculate the range of a strided array according to a mask. - [`nanmaxBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/stats/strided/nanmax-by]: calculate the maximum value of a strided array via a callback function, ignoring `NaN` values. - [`nanmax( N, x, strideX )`][@stdlib/stats/strided/nanmax]: calculate the maximum value of a strided array, ignoring `NaN` values. - [`nanmaxabs( N, x, strideX )`][@stdlib/stats/strided/nanmaxabs]: calculate the maximum absolute value of a strided array, ignoring `NaN` values. - [`nanminBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/stats/strided/nanmin-by]: calculate the minimum value of a strided array via a callback function, ignoring `NaN` values. - [`nanmin( N, x, strideX )`][@stdlib/stats/strided/nanmin]: calculate the minimum value of a strided array, ignoring `NaN` values. - [`nanminabs( N, x, strideX )`][@stdlib/stats/strided/nanminabs]: calculate the minimum absolute value of a strided array, ignoring `NaN` values. - [`scumax( N, x, strideX, y, strideY )`][@stdlib/stats/strided/scumax]: calculate the cumulative maximum of single-precision floating-point strided array elements. - [`scumaxabs( N, x, strideX, y, strideY )`][@stdlib/stats/strided/scumaxabs]: calculate the cumulative maximum absolute value of single-precision floating-point strided array elements. - [`scumin( N, x, strideX, y, strideY )`][@stdlib/stats/strided/scumin]: calculate the cumulative minimum of single-precision floating-point strided array elements. - [`scuminabs( N, x, strideX, y, strideY )`][@stdlib/stats/strided/scuminabs]: calculate the cumulative minimum absolute value of single-precision floating-point strided array elements. - [`sdsmean( N, x, strideX )`][@stdlib/stats/strided/sdsmean]: calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation. - [`sdsmeanors( N, x, strideX )`][@stdlib/stats/strided/sdsmeanors]: calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation. - [`smax( N, x, strideX )`][@stdlib/stats/strided/smax]: calculate the maximum value of a single-precision floating-point strided array. - [`smaxabs( N, x, strideX )`][@stdlib/stats/strided/smaxabs]: calculate the maximum absolute value of a single-precision floating-point strided array. - [`smaxabssorted( N, x, strideX )`][@stdlib/stats/strided/smaxabssorted]: calculate the maximum absolute value of a sorted single-precision floating-point strided array. - [`smaxsorted( N, x, stride )`][@stdlib/stats/strided/smaxsorted]: calculate the maximum value of a sorted single-precision floating-point strided array. - [`smean( N, x, strideX )`][@stdlib/stats/strided/smean]: calculate the arithmetic mean of a single-precision floating-point strided array. - [`smeanli( N, x, strideX )`][@stdlib/stats/strided/smeanli]: calculate the arithmetic mean of a single-precision floating-point strided array using a one-pass trial mean algorithm. - [`smeanpn( N, x, strideX )`][@stdlib/stats/strided/smeanpn]: calculate the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm. - [`smeanpw( N, x, strideX )`][@stdlib/stats/strided/smeanpw]: calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation. - [`smeanwd( N, x, strideX )`][@stdlib/stats/strided/smeanwd]: calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm. - [`smediansorted( N, x, strideX )`][@stdlib/stats/strided/smediansorted]: calculate the median value of a sorted single-precision floating-point strided array. - [`smidrange( N, x, strideX )`][@stdlib/stats/strided/smidrange]: calculate the mid-range of a single-precision floating-point strided array. - [`smin( N, x, strideX )`][@stdlib/stats/strided/smin]: calculate the minimum value of a single-precision floating-point strided array. - [`sminabs( N, x, strideX )`][@stdlib/stats/strided/sminabs]: calculate the minimum absolute value of a single-precision floating-point strided array. - [`sminsorted( N, x, strideX )`][@stdlib/stats/strided/sminsorted]: calculate the minimum value of a sorted single-precision floating-point strided array. - [`smskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/smskmax]: calculate the maximum value of a single-precision floating-point strided array according to a mask. - [`smskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/smskmin]: calculate the minimum value of a single-precision floating-point strided array according to a mask. - [`smskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/smskrange]: calculate the range of a single-precision floating-point strided array according to a mask. - [`snanmax( N, x, strideX )`][@stdlib/stats/strided/snanmax]: calculate the maximum value of a single-precision floating-point strided array, ignoring `NaN` values. - [`snanmaxabs( N, x, strideX )`][@stdlib/stats/strided/snanmaxabs]: calculate the maximum absolute value of a single-precision floating-point strided array, ignoring `NaN` values. - [`snanmeanors( N, x, strideX )`][@stdlib/stats/strided/snanmeanors]: calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation. - [`snanmeanpn( N, x, strideX )`][@stdlib/stats/strided/snanmeanpn]: calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm. - [`snanmeanwd( N, x, strideX )`][@stdlib/stats/strided/snanmeanwd]: calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using Welford's algorithm. - [`snanmin( N, x, strideX )`][@stdlib/stats/strided/snanmin]: calculate the minimum value of a single-precision floating-point strided array, ignoring `NaN` values. - [`snanminabs( N, x, strideX )`][@stdlib/stats/strided/snanminabs]: calculate the minimum absolute value of a single-precision floating-point strided array, ignoring `NaN` values. - [`snanmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/snanmskmax]: calculate the maximum value of a single-precision floating-point strided array according to a mask, ignoring `NaN` values. - [`snanmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/snanmskmin]: calculate the minimum value of a single-precision floating-point strided array according to a mask, ignoring `NaN` values. - [`snanmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/snanmskrange]: calculate the range of a single-precision floating-point strided array according to a mask, ignoring `NaN` values. - [`snanrange( N, x, strideX )`][@stdlib/stats/strided/snanrange]: calculate the range of a single-precision floating-point strided array, ignoring `NaN` values. - [`srange( N, x, strideX )`][@stdlib/stats/strided/srange]: calculate the range of a single-precision floating-point strided array. - [`sstdev( N, correction, x, strideX )`][@stdlib/stats/strided/sstdev]: calculate the standard deviation of a single-precision floating-point strided array. - [`sstdevch( N, correction, x, strideX )`][@stdlib/stats/strided/sstdevch]: calculate the standard deviation of a single-precision floating-point strided array using a one-pass trial mean algorithm. - [`sstdevpn( N, correction, x, strideX )`][@stdlib/stats/strided/sstdevpn]: calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm. - [`sstdevtk( N, correction, x, strideX )`][@stdlib/stats/strided/sstdevtk]: calculate the standard deviation of a single-precision floating-point strided array using a one-pass textbook algorithm. - [`sstdevyc( N, correction, x, strideX )`][@stdlib/stats/strided/sstdevyc]: calculate the standard deviation of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer. - [`svariancech( N, correction, x, strideX )`][@stdlib/stats/strided/svariancech]: calculate the variance of a single-precision floating-point strided array using a one-pass trial mean algorithm. - [`svariancepn( N, correction, x, strideX )`][@stdlib/stats/strided/svariancepn]: calculate the variance of a single-precision floating-point strided array using a two-pass algorithm. - [`svariancetk( N, correction, x, strideX )`][@stdlib/stats/strided/svariancetk]: calculate the variance of a single-precision floating-point strided array using a one-pass textbook algorithm. - [`svarianceyc( N, correction, x, strideX )`][@stdlib/stats/strided/svarianceyc]: calculate the variance of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer. - [`sztest( N, alternative, alpha, mu, sigma, x, strideX, out )`][@stdlib/stats/strided/sztest]: compute a one-sample Z-test for a single-precision floating-point strided array. - [`ztest( N, alternative, alpha, mu, sigma, x, strideX, out )`][@stdlib/stats/strided/ztest]: compute a one-sample Z-test for a strided array.
## Examples ```javascript var objectKeys = require( '@stdlib/utils-keys' ); var ns = require( '@stdlib/stats-strided' ); console.log( objectKeys( ns ) ); ```
* * * ## Notice This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more. For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Member event: 1
  • Push event: 15
  • Create event: 3
Last Year
  • Member event: 1
  • Push event: 15
  • Create event: 3

Issues and Pull Requests

Last synced: 9 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

.github/workflows/benchmark.yml actions
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 85880fa0301c86cca9da44039ee3bb12d3bedbfa composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request 9c18513d320d7b2c7185fb93396d0c664d5d8448 composite
.github/workflows/examples.yml actions
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
  • actions/upload-artifact 5d5d22a31266ced268874388b861e4b58bb5c2f3 composite
  • distributhor/workflow-webhook 48a40b380ce4593b6a6676528cd005986ae56629 composite
.github/workflows/productionize.yml actions
  • 8398a7/action-slack 28ba43ae48961b90635b50953d216767a6bea486 composite
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
  • stdlib-js/bundle-action main composite
  • stdlib-js/transform-errors-action main composite
.github/workflows/publish.yml actions
  • 8398a7/action-slack 28ba43ae48961b90635b50953d216767a6bea486 composite
  • JS-DevTools/npm-publish 19c28f1ef146469e409470805ea4279d47c3d35c composite
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
  • styfle/cancel-workflow-action 85880fa0301c86cca9da44039ee3bb12d3bedbfa composite
.github/workflows/test.yml actions
  • 8398a7/action-slack 28ba43ae48961b90635b50953d216767a6bea486 composite
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
.github/workflows/test_bundles.yml actions
  • 8398a7/action-slack 28ba43ae48961b90635b50953d216767a6bea486 composite
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
  • denoland/setup-deno 041b854f97b325bd60e53e9dc2de9cb9f9ac0cba composite
.github/workflows/test_coverage.yml actions
  • 8398a7/action-slack 28ba43ae48961b90635b50953d216767a6bea486 composite
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
  • codecov/codecov-action 84508663e988701840491b86de86b666e8a86bed composite
  • distributhor/workflow-webhook 48a40b380ce4593b6a6676528cd005986ae56629 composite
.github/workflows/test_install.yml actions
  • 8398a7/action-slack 28ba43ae48961b90635b50953d216767a6bea486 composite
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
.github/workflows/test_published_package.yml actions
  • 8398a7/action-slack 28ba43ae48961b90635b50953d216767a6bea486 composite
  • actions/checkout 8ade135a41bc03ea155e62e844d188df1ea18608 composite
  • actions/setup-node b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 composite
package.json npm
  • @stdlib/array-filled-by ^0.2.1 development
  • @stdlib/array-float32 ^0.2.2 development
  • @stdlib/array-float64 ^0.2.2 development
  • @stdlib/array-linspace ^0.2.1 development
  • @stdlib/array-little-endian-float64 github:stdlib-js/array-little-endian-float64#main development
  • @stdlib/array-one-to ^0.2.2 development
  • @stdlib/array-uint8 ^0.2.2 development
  • @stdlib/assert-has-wasm-support ^0.2.2 development
  • @stdlib/assert-is-browser ^0.2.2 development
  • @stdlib/assert-is-error ^0.2.2 development
  • @stdlib/assert-is-wasm-memory github:stdlib-js/assert-is-wasm-memory#main development
  • @stdlib/bench-harness ^0.2.2 development
  • @stdlib/blas-ext-base-dapxsum ^0.2.2 development
  • @stdlib/blas-ext-base-dapxsumpw ^0.2.2 development
  • @stdlib/blas-ext-base-dnannsumpw ^0.2.2 development
  • @stdlib/blas-ext-base-dsapxsum ^0.2.2 development
  • @stdlib/blas-ext-base-dssum ^0.2.2 development
  • @stdlib/blas-ext-base-dssumors ^0.2.2 development
  • @stdlib/blas-ext-base-dssumpw ^0.2.2 development
  • @stdlib/blas-ext-base-dsumkbn ^0.2.2 development
  • @stdlib/blas-ext-base-dsumkbn2 ^0.2.2 development
  • @stdlib/blas-ext-base-dsumors ^0.2.2 development
  • @stdlib/blas-ext-base-dsumpw ^0.2.2 development
  • @stdlib/blas-ext-base-gfill-by ^0.2.1 development
  • @stdlib/blas-ext-base-sapxsum ^0.2.3 development
  • @stdlib/blas-ext-base-ssumpw ^0.2.2 development
  • @stdlib/constants-float32-eps ^0.2.2 development
  • @stdlib/constants-float64-eps ^0.2.2 development
  • @stdlib/fs-read-file ^0.2.2 development
  • @stdlib/fs-read-wasm ^0.2.2 development
  • @stdlib/fs-write-file ^0.2.2 development
  • @stdlib/math-base-assert-is-nan ^0.2.2 development
  • @stdlib/math-base-assert-is-nanf ^0.2.2 development
  • @stdlib/math-base-assert-is-negative-zero ^0.2.2 development
  • @stdlib/math-base-assert-is-negative-zerof ^0.1.3 development
  • @stdlib/math-base-assert-is-positive-zero ^0.2.2 development
  • @stdlib/math-base-assert-is-positive-zerof ^0.1.3 development
  • @stdlib/math-base-special-abs ^0.2.2 development
  • @stdlib/math-base-special-absf ^0.2.2 development
  • @stdlib/math-base-special-floor ^0.2.3 development
  • @stdlib/math-base-special-pow ^0.3.0 development
  • @stdlib/math-base-special-round ^0.3.0 development
  • @stdlib/math-base-special-sqrt ^0.2.2 development
  • @stdlib/math-base-special-sqrtf ^0.2.2 development
  • @stdlib/ndarray-base-bytes-per-element ^0.2.2 development
  • @stdlib/number-float64-base-to-float32 ^0.2.2 development
  • @stdlib/random-array-bernoulli ^0.2.1 development
  • @stdlib/random-array-discrete-uniform ^0.2.1 development
  • @stdlib/random-array-uniform ^0.2.1 development
  • @stdlib/random-base-bernoulli ^0.2.1 development
  • @stdlib/random-base-discrete-uniform ^0.2.1 development
  • @stdlib/random-base-randu ^0.2.1 development
  • @stdlib/random-base-uniform ^0.2.1 development
  • @stdlib/strided-base-stride2offset ^0.1.0 development
  • @stdlib/string-base-base64-to-uint8array github:stdlib-js/string-base-base64-to-uint8array#main development
  • @stdlib/string-format ^0.2.2 development
  • @stdlib/string-replace ^0.2.2 development
  • @stdlib/time-current-year ^0.2.2 development
  • @stdlib/utils-define-nonenumerable-read-only-property ^0.2.2 development
  • @stdlib/utils-inherit ^0.2.2 development
  • @stdlib/utils-keys ^0.2.2 development
  • @stdlib/utils-try-require ^0.2.2 development
  • @stdlib/wasm-base-arrays2ptrs github:stdlib-js/wasm-base-arrays2ptrs#main development
  • @stdlib/wasm-base-strided2object github:stdlib-js/wasm-base-strided2object#main development
  • @stdlib/wasm-memory github:stdlib-js/wasm-memory#main development
  • @stdlib/wasm-module-wrapper github:stdlib-js/wasm-module-wrapper#main development
  • istanbul ^0.4.1 development
  • proxyquire ^2.0.0 development
  • tap-min git+https://github.com/Planeshifter/tap-min.git development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/stats-strided-dcumax github:stdlib-js/stats-strided-dcumax#main
  • @stdlib/stats-strided-dcumaxabs github:stdlib-js/stats-strided-dcumaxabs#main
  • @stdlib/stats-strided-dcumin github:stdlib-js/stats-strided-dcumin#main
  • @stdlib/stats-strided-dcuminabs github:stdlib-js/stats-strided-dcuminabs#main
  • @stdlib/stats-strided-dmax github:stdlib-js/stats-strided-dmax#main
  • @stdlib/stats-strided-dmaxabs github:stdlib-js/stats-strided-dmaxabs#main
  • @stdlib/stats-strided-dmaxabssorted github:stdlib-js/stats-strided-dmaxabssorted#main
  • @stdlib/stats-strided-dmaxsorted github:stdlib-js/stats-strided-dmaxsorted#main
  • @stdlib/stats-strided-dmean github:stdlib-js/stats-strided-dmean#main
  • @stdlib/stats-strided-dmeankbn github:stdlib-js/stats-strided-dmeankbn#main
  • @stdlib/stats-strided-dmeankbn2 github:stdlib-js/stats-strided-dmeankbn2#main
  • @stdlib/stats-strided-dmeanli github:stdlib-js/stats-strided-dmeanli#main
  • @stdlib/stats-strided-dmeanlipw github:stdlib-js/stats-strided-dmeanlipw#main
  • @stdlib/stats-strided-dmeanors github:stdlib-js/stats-strided-dmeanors#main
  • @stdlib/stats-strided-dmeanpn github:stdlib-js/stats-strided-dmeanpn#main
  • @stdlib/stats-strided-dmeanpw github:stdlib-js/stats-strided-dmeanpw#main
  • @stdlib/stats-strided-dmeanwd github:stdlib-js/stats-strided-dmeanwd#main
  • @stdlib/stats-strided-dmediansorted github:stdlib-js/stats-strided-dmediansorted#main
  • @stdlib/stats-strided-dmidrange github:stdlib-js/stats-strided-dmidrange#main
  • @stdlib/stats-strided-dmin github:stdlib-js/stats-strided-dmin#main
  • @stdlib/stats-strided-dminabs github:stdlib-js/stats-strided-dminabs#main
  • @stdlib/stats-strided-dminsorted github:stdlib-js/stats-strided-dminsorted#main
  • @stdlib/stats-strided-dmskmax github:stdlib-js/stats-strided-dmskmax#main
  • @stdlib/stats-strided-dmskmin github:stdlib-js/stats-strided-dmskmin#main
  • @stdlib/stats-strided-dmskrange github:stdlib-js/stats-strided-dmskrange#main
  • @stdlib/stats-strided-dnanmax github:stdlib-js/stats-strided-dnanmax#main
  • @stdlib/stats-strided-dnanmaxabs github:stdlib-js/stats-strided-dnanmaxabs#main
  • @stdlib/stats-strided-dnanmean github:stdlib-js/stats-strided-dnanmean#main
  • @stdlib/stats-strided-dnanmeanors github:stdlib-js/stats-strided-dnanmeanors#main
  • @stdlib/stats-strided-dnanmeanpn github:stdlib-js/stats-strided-dnanmeanpn#main
  • @stdlib/stats-strided-dnanmeanpw github:stdlib-js/stats-strided-dnanmeanpw#main
  • @stdlib/stats-strided-dnanmeanwd github:stdlib-js/stats-strided-dnanmeanwd#main
  • @stdlib/stats-strided-dnanmin github:stdlib-js/stats-strided-dnanmin#main
  • @stdlib/stats-strided-dnanminabs github:stdlib-js/stats-strided-dnanminabs#main
  • @stdlib/stats-strided-dnanmskmax github:stdlib-js/stats-strided-dnanmskmax#main
  • @stdlib/stats-strided-dnanmskmin github:stdlib-js/stats-strided-dnanmskmin#main
  • @stdlib/stats-strided-dnanmskrange github:stdlib-js/stats-strided-dnanmskrange#main
  • @stdlib/stats-strided-dnanrange github:stdlib-js/stats-strided-dnanrange#main
  • @stdlib/stats-strided-dnanstdev github:stdlib-js/stats-strided-dnanstdev#main
  • @stdlib/stats-strided-dnanstdevch github:stdlib-js/stats-strided-dnanstdevch#main
  • @stdlib/stats-strided-dnanstdevpn github:stdlib-js/stats-strided-dnanstdevpn#main
  • @stdlib/stats-strided-dnanstdevtk github:stdlib-js/stats-strided-dnanstdevtk#main
  • @stdlib/stats-strided-dnanstdevwd github:stdlib-js/stats-strided-dnanstdevwd#main
  • @stdlib/stats-strided-dnanstdevyc github:stdlib-js/stats-strided-dnanstdevyc#main
  • @stdlib/stats-strided-dnanvariance github:stdlib-js/stats-strided-dnanvariance#main
  • @stdlib/stats-strided-dnanvariancech github:stdlib-js/stats-strided-dnanvariancech#main
  • @stdlib/stats-strided-dnanvariancepn github:stdlib-js/stats-strided-dnanvariancepn#main
  • @stdlib/stats-strided-dnanvariancetk github:stdlib-js/stats-strided-dnanvariancetk#main
  • @stdlib/stats-strided-dnanvariancewd github:stdlib-js/stats-strided-dnanvariancewd#main
  • @stdlib/stats-strided-dnanvarianceyc github:stdlib-js/stats-strided-dnanvarianceyc#main
  • @stdlib/stats-strided-drange github:stdlib-js/stats-strided-drange#main
  • @stdlib/stats-strided-dsemch github:stdlib-js/stats-strided-dsemch#main
  • @stdlib/stats-strided-dsemtk github:stdlib-js/stats-strided-dsemtk#main
  • @stdlib/stats-strided-dsemwd github:stdlib-js/stats-strided-dsemwd#main
  • @stdlib/stats-strided-dsemyc github:stdlib-js/stats-strided-dsemyc#main
  • @stdlib/stats-strided-dsmean github:stdlib-js/stats-strided-dsmean#main
  • @stdlib/stats-strided-dsmeanors github:stdlib-js/stats-strided-dsmeanors#main
  • @stdlib/stats-strided-dsmeanpn github:stdlib-js/stats-strided-dsmeanpn#main
  • @stdlib/stats-strided-dsmeanpw github:stdlib-js/stats-strided-dsmeanpw#main
  • @stdlib/stats-strided-dsmeanwd github:stdlib-js/stats-strided-dsmeanwd#main
  • @stdlib/stats-strided-dsnanmean github:stdlib-js/stats-strided-dsnanmean#main
  • @stdlib/stats-strided-dsnanmeanors github:stdlib-js/stats-strided-dsnanmeanors#main
  • @stdlib/stats-strided-dsnanmeanpn github:stdlib-js/stats-strided-dsnanmeanpn#main
  • @stdlib/stats-strided-dsnanmeanwd github:stdlib-js/stats-strided-dsnanmeanwd#main
  • @stdlib/stats-strided-dstdevch github:stdlib-js/stats-strided-dstdevch#main
  • @stdlib/stats-strided-dstdevpn github:stdlib-js/stats-strided-dstdevpn#main
  • @stdlib/stats-strided-dstdevtk github:stdlib-js/stats-strided-dstdevtk#main
  • @stdlib/stats-strided-dstdevwd github:stdlib-js/stats-strided-dstdevwd#main
  • @stdlib/stats-strided-dstdevyc github:stdlib-js/stats-strided-dstdevyc#main
  • @stdlib/stats-strided-dsvariance github:stdlib-js/stats-strided-dsvariance#main
  • @stdlib/stats-strided-dsvariancepn github:stdlib-js/stats-strided-dsvariancepn#main
  • @stdlib/stats-strided-dvariance github:stdlib-js/stats-strided-dvariance#main
  • @stdlib/stats-strided-dvariancech github:stdlib-js/stats-strided-dvariancech#main
  • @stdlib/stats-strided-dvariancepn github:stdlib-js/stats-strided-dvariancepn#main
  • @stdlib/stats-strided-dvariancetk github:stdlib-js/stats-strided-dvariancetk#main
  • @stdlib/stats-strided-dvariancewd github:stdlib-js/stats-strided-dvariancewd#main
  • @stdlib/stats-strided-dvarianceyc github:stdlib-js/stats-strided-dvarianceyc#main
  • @stdlib/stats-strided-dvarmtk github:stdlib-js/stats-strided-dvarmtk#main
  • @stdlib/stats-strided-scumax github:stdlib-js/stats-strided-scumax#main
  • @stdlib/stats-strided-scumaxabs github:stdlib-js/stats-strided-scumaxabs#main
  • @stdlib/stats-strided-scumin github:stdlib-js/stats-strided-scumin#main
  • @stdlib/stats-strided-scuminabs github:stdlib-js/stats-strided-scuminabs#main
  • @stdlib/stats-strided-sdsmean github:stdlib-js/stats-strided-sdsmean#main
  • @stdlib/stats-strided-sdsmeanors github:stdlib-js/stats-strided-sdsmeanors#main
  • @stdlib/stats-strided-smax github:stdlib-js/stats-strided-smax#main
  • @stdlib/stats-strided-smaxabs github:stdlib-js/stats-strided-smaxabs#main
  • @stdlib/stats-strided-smaxabssorted github:stdlib-js/stats-strided-smaxabssorted#main
  • @stdlib/stats-strided-smaxsorted github:stdlib-js/stats-strided-smaxsorted#main
  • @stdlib/stats-strided-smeanli github:stdlib-js/stats-strided-smeanli#main
  • @stdlib/stats-strided-smeanpw github:stdlib-js/stats-strided-smeanpw#main
  • @stdlib/stats-strided-smeanwd github:stdlib-js/stats-strided-smeanwd#main
  • @stdlib/stats-strided-smediansorted github:stdlib-js/stats-strided-smediansorted#main
  • @stdlib/stats-strided-smidrange github:stdlib-js/stats-strided-smidrange#main
  • @stdlib/stats-strided-smin github:stdlib-js/stats-strided-smin#main
  • @stdlib/stats-strided-sminabs github:stdlib-js/stats-strided-sminabs#main
  • @stdlib/stats-strided-sminsorted github:stdlib-js/stats-strided-sminsorted#main
  • @stdlib/stats-strided-smskmax github:stdlib-js/stats-strided-smskmax#main
  • @stdlib/stats-strided-smskmin github:stdlib-js/stats-strided-smskmin#main
  • @stdlib/stats-strided-smskrange github:stdlib-js/stats-strided-smskrange#main
  • @stdlib/stats-strided-snanmax github:stdlib-js/stats-strided-snanmax#main
  • @stdlib/stats-strided-snanmaxabs github:stdlib-js/stats-strided-snanmaxabs#main
  • @stdlib/stats-strided-snanmeanors github:stdlib-js/stats-strided-snanmeanors#main
  • @stdlib/stats-strided-snanmeanpn github:stdlib-js/stats-strided-snanmeanpn#main
  • @stdlib/stats-strided-snanmeanwd github:stdlib-js/stats-strided-snanmeanwd#main
  • @stdlib/stats-strided-snanmin github:stdlib-js/stats-strided-snanmin#main
  • @stdlib/stats-strided-snanminabs github:stdlib-js/stats-strided-snanminabs#main
  • @stdlib/stats-strided-snanmskmax github:stdlib-js/stats-strided-snanmskmax#main
  • @stdlib/stats-strided-snanmskmin github:stdlib-js/stats-strided-snanmskmin#main
  • @stdlib/stats-strided-snanmskrange github:stdlib-js/stats-strided-snanmskrange#main
  • @stdlib/stats-strided-snanrange github:stdlib-js/stats-strided-snanrange#main
  • @stdlib/stats-strided-srange github:stdlib-js/stats-strided-srange#main
  • @stdlib/stats-strided-sstdevch github:stdlib-js/stats-strided-sstdevch#main
  • @stdlib/stats-strided-sstdevpn github:stdlib-js/stats-strided-sstdevpn#main
  • @stdlib/stats-strided-sstdevtk github:stdlib-js/stats-strided-sstdevtk#main
  • @stdlib/stats-strided-sstdevyc github:stdlib-js/stats-strided-sstdevyc#main
  • @stdlib/stats-strided-svariancech github:stdlib-js/stats-strided-svariancech#main
  • @stdlib/stats-strided-svariancepn github:stdlib-js/stats-strided-svariancepn#main
  • @stdlib/stats-strided-svariancetk github:stdlib-js/stats-strided-svariancetk#main
  • @stdlib/stats-strided-svarianceyc github:stdlib-js/stats-strided-svarianceyc#main
  • @stdlib/utils-define-read-only-property ^0.2.2