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-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ The namespace contains the following statistical functions:
116
116
- <spanclass="signature">[`stdevwd( N, correction, x, stride )`][@stdlib/stats/base/stdevwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
117
117
- <spanclass="signature">[`stdevyc( N, correction, x, stride )`][@stdlib/stats/base/stdevyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
118
118
- <spanclass="signature">[`svariance( N, correction, x, strideX )`][@stdlib/stats/base/svariance]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array.</span>
119
-
- <spanclass="signature">[`svariancewd( N, correction, x, strideX )`][@stdlib/stats/base/svariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array using Welford's algorithm.</span>
119
+
- <spanclass="signature">[`svariancewd( N, correction, x, strideX )`][@stdlib/stats/strided/svariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array using Welford's algorithm.</span>
120
120
- <spanclass="signature">[`variance( N, correction, x, stride )`][@stdlib/stats/base/variance]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array.</span>
121
121
- <spanclass="signature">[`variancech( N, correction, x, strideX )`][@stdlib/stats/base/variancech]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a one-pass trial mean algorithm.</span>
122
122
- <spanclass="signature">[`variancepn( N, correction, x, strideX )`][@stdlib/stats/base/variancepn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a two-pass algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/snanvariancewd/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -247,7 +247,7 @@ console.log( v );
247
247
- <spanclass="package-name">[`@stdlib/stats/base/nanvariancewd`][@stdlib/stats/base/nanvariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array ignoring NaN values and using Welford's algorithm.</span>
248
248
- <spanclass="package-name">[`@stdlib/stats/base/snanstdevwd`][@stdlib/stats/base/snanstdevwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array ignoring NaN values and using Welford's algorithm.</span>
249
249
- <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>
250
-
- <spanclass="package-name">[`@stdlib/stats/base/svariancewd`][@stdlib/stats/base/svariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array using Welford's algorithm.</span>
250
+
- <spanclass="package-name">[`@stdlib/stats/strided/svariancewd`][@stdlib/stats/strided/svariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array using Welford's algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/sstdevwd/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -249,7 +249,7 @@ console.log( v );
249
249
- <spanclass="package-name">[`@stdlib/stats/base/snanstdevwd`][@stdlib/stats/base/snanstdevwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array ignoring NaN values and using Welford's algorithm.</span>
250
250
- <spanclass="package-name">[`@stdlib/stats/strided/sstdev`][@stdlib/stats/strided/sstdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array.</span>
251
251
- <spanclass="package-name">[`@stdlib/stats/base/stdevwd`][@stdlib/stats/base/stdevwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
252
-
- <spanclass="package-name">[`@stdlib/stats/base/svariancewd`][@stdlib/stats/base/svariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array using Welford's algorithm.</span>
252
+
- <spanclass="package-name">[`@stdlib/stats/strided/svariancewd`][@stdlib/stats/strided/svariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array using Welford's algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/variancewd/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,7 +182,7 @@ var v = variancewd.ndarray( N, 1, x, 2, 1 );
182
182
183
183
- If `N <= 0`, both functions return `NaN`.
184
184
- If `N - c` is less than or equal to `0` (where `c` corresponds to the provided degrees of freedom adjustment), both functions return `NaN`.
185
-
- Depending on the environment, the typed versions ([`dvariancewd`][@stdlib/stats/strided/dvariancewd], [`svariancewd`][@stdlib/stats/base/svariancewd], etc.) are likely to be significantly more performant.
185
+
- Depending on the environment, the typed versions ([`dvariancewd`][@stdlib/stats/strided/dvariancewd], [`svariancewd`][@stdlib/stats/strided/svariancewd], etc.) are likely to be significantly more performant.
0 commit comments