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
-18Lines changed: 0 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -73,16 +73,10 @@ The namespace contains the following statistical functions:
73
73
- <spanclass="signature">[`meanpn( N, x, strideX )`][@stdlib/stats/base/meanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using a two-pass error correction algorithm.</span>
74
74
- <spanclass="signature">[`meanpw( N, x, stride )`][@stdlib/stats/base/meanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
75
75
- <spanclass="signature">[`meanwd( N, x, strideX )`][@stdlib/stats/base/meanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
76
-
- <spanclass="signature">[`nanmaxBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/stats/strided/nanmax-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array via a callback function, ignoring `NaN` values.</span>
77
-
- <spanclass="signature">[`nanmax( N, x, strideX )`][@stdlib/stats/strided/nanmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array, ignoring `NaN` values.</span>
78
-
- <spanclass="signature">[`nanmaxabs( N, x, strideX )`][@stdlib/stats/strided/nanmaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a strided array, ignoring `NaN` values.</span>
79
76
- <spanclass="signature">[`nanmean( N, x, stride )`][@stdlib/stats/base/nanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values.</span>
80
77
- <spanclass="signature">[`nanmeanors( N, x, stride )`][@stdlib/stats/base/nanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
81
78
- <spanclass="signature">[`nanmeanpn( N, x, strideX )`][@stdlib/stats/base/nanmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
82
79
- <spanclass="signature">[`nanmeanwd( N, x, stride )`][@stdlib/stats/base/nanmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using Welford's algorithm.</span>
83
-
- <spanclass="signature">[`nanminBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/stats/strided/nanmin-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array via a callback function, ignoring `NaN` values.</span>
84
-
- <spanclass="signature">[`nanmin( N, x, strideX )`][@stdlib/stats/strided/nanmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array, ignoring `NaN` values.</span>
85
-
- <spanclass="signature">[`nanminabs( N, x, strideX )`][@stdlib/stats/strided/nanminabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum absolute value of a strided array, ignoring `NaN` values.</span>
86
80
- <spanclass="signature">[`nanmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/nanmskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array according to a mask, ignoring `NaN` values.</span>
87
81
- <spanclass="signature">[`nanmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/nanmskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array according to a mask, ignoring `NaN` values.</span>
88
82
- <spanclass="signature">[`nanmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/nanmskrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array according to a mask, ignoring `NaN` values.</span>
0 commit comments