diff --git a/lib/node_modules/@stdlib/stats/base/README.md b/lib/node_modules/@stdlib/stats/base/README.md index 579f018f2318..c83efba80a7d 100644 --- a/lib/node_modules/@stdlib/stats/base/README.md +++ b/lib/node_modules/@stdlib/stats/base/README.md @@ -61,7 +61,6 @@ The namespace contains the following statistical functions: - [`cumaxabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/cumaxabs]: calculate the cumulative maximum absolute value of a strided array. - [`cumin( N, x, strideX, y, strideY )`][@stdlib/stats/base/cumin]: calculate the cumulative minimum of a strided array. - [`cuminabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/cuminabs]: calculate the cumulative minimum absolute value of a strided array. -- [`dmean( N, x, strideX )`][@stdlib/stats/strided/dmean]: calculate the arithmetic mean of a double-precision floating-point strided array. - [`dmeanpn( N, x, strideX )`][@stdlib/stats/base/dmeanpn]: calculate the arithmetic mean of a double-precision floating-point strided array using a two-pass error correction algorithm. - [`dmeanstdev( N, correction, x, strideX, out, strideOut )`][@stdlib/stats/base/dmeanstdev]: calculate the mean and standard deviation of a double-precision floating-point strided array. - [`dmeanstdevpn( N, correction, x, strideX, out, strideOut )`][@stdlib/stats/base/dmeanstdevpn]: calculate the mean and standard deviation of a double-precision floating-point strided array using a two-pass algorithm. @@ -95,12 +94,12 @@ The namespace contains the following statistical functions: - [`mskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskmax]: calculate the maximum value of a strided array according to a mask. - [`mskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskmin]: calculate the minimum value of a strided array according to a mask. - [`mskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskrange]: calculate the range of a strided array according to a mask. -- [`nanmaxBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/base/nanmax-by]: calculate the maximum value of a strided array via a callback function, ignoring `NaN` values. +- [`nanmaxBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/stats/base/nanmax-by]: calculate the maximum value of a strided array via a callback function, ignoring `NaN` values. - [`nanmax( N, x, strideX )`][@stdlib/stats/base/nanmax]: calculate the maximum value of a strided array, ignoring `NaN` values. -- [`nanmaxabs( N, x, stride )`][@stdlib/stats/base/nanmaxabs]: calculate the maximum absolute value of a strided array, ignoring `NaN` values. +- [`nanmaxabs( N, x, strideX )`][@stdlib/stats/base/nanmaxabs]: calculate the maximum absolute value of a strided array, ignoring `NaN` values. - [`nanmean( N, x, stride )`][@stdlib/stats/base/nanmean]: calculate the arithmetic mean of a strided array, ignoring `NaN` values. - [`nanmeanors( N, x, stride )`][@stdlib/stats/base/nanmeanors]: calculate the arithmetic mean of a strided array, ignoring `NaN` values and using ordinary recursive summation. -- [`nanmeanpn( N, x, stride )`][@stdlib/stats/base/nanmeanpn]: calculate the arithmetic mean of a strided array, ignoring `NaN` values and using a two-pass error correction algorithm. +- [`nanmeanpn( N, x, strideX )`][@stdlib/stats/base/nanmeanpn]: calculate the arithmetic mean of a strided array, ignoring `NaN` values and using a two-pass error correction algorithm. - [`nanmeanwd( N, x, stride )`][@stdlib/stats/base/nanmeanwd]: calculate the arithmetic mean of a strided array, ignoring `NaN` values and using Welford's algorithm. - [`nanminBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/base/nanmin-by]: calculate the minimum value of a strided array via a callback function, ignoring `NaN` values. - [`nanmin( N, x, strideX )`][@stdlib/stats/base/nanmin]: calculate the minimum value of a strided array, ignoring `NaN` values. @@ -223,8 +222,6 @@ console.log( objectKeys( ns ) ); [@stdlib/stats/base/cuminabs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/cuminabs -[@stdlib/stats/strided/dmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dmean - [@stdlib/stats/base/dmeanpn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dmeanpn [@stdlib/stats/base/dmeanstdev]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dmeanstdev