diff --git a/lib/node_modules/@stdlib/stats/base/README.md b/lib/node_modules/@stdlib/stats/base/README.md index 720fbeb6b43e..7a6e7a250333 100644 --- a/lib/node_modules/@stdlib/stats/base/README.md +++ b/lib/node_modules/@stdlib/stats/base/README.md @@ -120,7 +120,7 @@ The namespace contains the following statistical functions: - [`nanvariancech( N, correction, x, stride )`][@stdlib/stats/base/nanvariancech]: calculate the variance of a strided array ignoring `NaN` values and using a one-pass trial mean algorithm. - [`nanvariancepn( N, correction, x, stride )`][@stdlib/stats/base/nanvariancepn]: calculate the variance of a strided array ignoring `NaN` values and using a two-pass algorithm. - [`nanvariancetk( N, correction, x, stride )`][@stdlib/stats/base/nanvariancetk]: calculate the variance of a strided array ignoring `NaN` values and using a one-pass textbook algorithm. -- [`nanvariancewd( N, correction, x, stride )`][@stdlib/stats/base/nanvariancewd]: calculate the variance of a strided array ignoring `NaN` values and using Welford's algorithm. +- [`nanvariancewd( N, correction, x, strideX )`][@stdlib/stats/base/nanvariancewd]: calculate the variance of a strided array ignoring `NaN` values and using Welford's algorithm. - [`nanvarianceyc( N, correction, x, strideX )`][@stdlib/stats/base/nanvarianceyc]: calculate the variance of a strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer. - [`rangeBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/base/range-by]: calculate the range of a strided array via a callback function. - [`range( N, x, stride )`][@stdlib/stats/base/range]: calculate the range of a strided array.