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
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ The namespace contains the following statistical functions:
89
89
- <spanclass="signature">[`dnanvariancepn( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariancepn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a two-pass algorithm.</span>
90
90
- <spanclass="signature">[`dnanvariancetk( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariancetk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass textbook algorithm.</span>
91
91
- <spanclass="signature">[`dnanvariancewd( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using Welford's algorithm.</span>
92
-
- <spanclass="signature">[`dnanvarianceyc( N, correction, x, strideX )`][@stdlib/stats/base/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">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.</span>
92
+
- <spanclass="signature">[`dnanvarianceyc( N, correction, x, strideX )`][@stdlib/stats/strided/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">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.</span>
93
93
- <spanclass="signature">[`drange( N, x, strideX )`][@stdlib/stats/base/drange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array.</span>
94
94
- <spanclass="signature">[`dsem( N, correction, x, stride )`][@stdlib/stats/base/dsem]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array.</span>
95
95
- <spanclass="signature">[`dsemch( N, correction, x, strideX )`][@stdlib/stats/base/dsemch]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array using a one-pass trial mean algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dvarianceyc/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -348,7 +348,7 @@ int main( void ) {
348
348
349
349
## See Also
350
350
351
-
- <span class="package-name">[`@stdlib/stats/base/dnanvarianceyc`][@stdlib/stats/base/dnanvarianceyc]</span><span class="delimiter">: </span><span class="description">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.</span>
351
+
- <span class="package-name">[`@stdlib/stats/strided/dnanvarianceyc`][@stdlib/stats/strided/dnanvarianceyc]</span><span class="delimiter">: </span><span class="description">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.</span>
352
352
- <span class="package-name">[`@stdlib/stats/base/dstdevyc`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
353
353
- <span class="package-name">[`@stdlib/stats/base/dvariance`][@stdlib/stats/base/dvariance]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array.</span>
354
354
- <span class="package-name">[`@stdlib/stats/base/svarianceyc`][@stdlib/stats/base/svarianceyc]</span><span class="delimiter">: </span><span class="description">calculate the variance of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/nanvarianceyc/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,7 @@ var v = nanvarianceyc.ndarray( 5, 1, x, 2, 1 );
174
174
- If `N <= 0`, both functions return `NaN`.
175
175
- If `n - c` is less than or equal to `0` (where `c` corresponds to the provided degrees of freedom adjustment and `n` corresponds to the number of non-`NaN` indexed elements), both functions return `NaN`.
176
176
- Both functions support array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/base/accessor`][@stdlib/array/base/accessor]).
177
-
- Depending on the environment, the typed versions ([`dnanvarianceyc`][@stdlib/stats/base/dnanvarianceyc], [`snanvarianceyc`][@stdlib/stats/base/snanvarianceyc], etc.) are likely to be significantly more performant.
177
+
- Depending on the environment, the typed versions ([`dnanvarianceyc`][@stdlib/stats/strided/dnanvarianceyc], [`snanvarianceyc`][@stdlib/stats/base/snanvarianceyc], etc.) are likely to be significantly more performant.
178
178
179
179
</section>
180
180
@@ -230,7 +230,7 @@ console.log( v );
230
230
231
231
## See Also
232
232
233
-
- <spanclass="package-name">[`@stdlib/stats/base/dnanvarianceyc`][@stdlib/stats/base/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">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.</span>
233
+
- <spanclass="package-name">[`@stdlib/stats/strided/dnanvarianceyc`][@stdlib/stats/strided/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">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.</span>
234
234
- <spanclass="package-name">[`@stdlib/stats/base/nanstdevyc`][@stdlib/stats/base/nanstdevyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
235
235
- <spanclass="package-name">[`@stdlib/stats/base/nanvariance`][@stdlib/stats/base/nanvariance]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array ignoring NaN values.</span>
236
236
- <spanclass="package-name">[`@stdlib/stats/base/snanvarianceyc`][@stdlib/stats/base/snanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/snanvarianceyc/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,7 @@ console.log( v );
242
242
243
243
## See Also
244
244
245
-
- <spanclass="package-name">[`@stdlib/stats/base/dnanvarianceyc`][@stdlib/stats/base/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">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.</span>
245
+
- <spanclass="package-name">[`@stdlib/stats/strided/dnanvarianceyc`][@stdlib/stats/strided/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">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.</span>
246
246
- <spanclass="package-name">[`@stdlib/stats/base/nanvarianceyc`][@stdlib/stats/base/nanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
247
247
- <spanclass="package-name">[`@stdlib/stats/base/snanstdevyc`][@stdlib/stats/base/snanstdevyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
248
248
- <spanclass="package-name">[`@stdlib/stats/base/snanvariance`][@stdlib/stats/base/snanvariance]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array ignoring NaN values.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dnanstdevyc/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -360,7 +360,7 @@ int main( void ) {
360
360
## See Also
361
361
362
362
- <span class="package-name">[`@stdlib/stats/base/dnanstdev`][@stdlib/stats/base/dnanstdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array ignoring NaN values.</span>
363
-
- <span class="package-name">[`@stdlib/stats/base/dnanvarianceyc`][@stdlib/stats/base/dnanvarianceyc]</span><span class="delimiter">: </span><span class="description">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.</span>
363
+
- <span class="package-name">[`@stdlib/stats/strided/dnanvarianceyc`][@stdlib/stats/strided/dnanvarianceyc]</span><span class="delimiter">: </span><span class="description">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.</span>
364
364
- <span class="package-name">[`@stdlib/stats/base/dstdevyc`][@stdlib/stats/base/dstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
365
365
- <span class="package-name">[`@stdlib/stats/base/nanstdevyc`][@stdlib/stats/base/nanstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
366
366
- <span class="package-name">[`@stdlib/stats/base/snanstdevyc`][@stdlib/stats/base/snanstdevyc]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array ignoring NaN values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
0 commit comments