Knowledge

Algorithms for calculating variance

Source šŸ“

12278: 13823: 11550: 13098: 5714: 12273:{\displaystyle {\begin{aligned}\operatorname {Cov} _{N}(X,Y)={\frac {C_{N}}{N}}&={\frac {\operatorname {Cov} _{N-1}(X,Y)\cdot (N-1)+(x_{n}-{\bar {x}}_{n})(y_{n}-{\bar {y}}_{n-1})}{N}}\\&={\frac {\operatorname {Cov} _{N-1}(X,Y)\cdot (N-1)+(x_{n}-{\bar {x}}_{n-1})(y_{n}-{\bar {y}}_{n})}{N}}\\&={\frac {\operatorname {Cov} _{N-1}(X,Y)\cdot (N-1)+{\frac {N-1}{N}}(x_{n}-{\bar {x}}_{n-1})(y_{n}-{\bar {y}}_{n-1})}{N}}\\&={\frac {\operatorname {Cov} _{N-1}(X,Y)\cdot (N-1)+{\frac {N}{N-1}}(x_{n}-{\bar {x}}_{n})(y_{n}-{\bar {y}}_{n})}{N}}.\end{aligned}}} 11293: 13818:{\displaystyle {\begin{alignedat}{2}{\bar {x}}_{n+k}&={\bar {x}}_{n}&\,+\,&{\frac {\sum _{i=n+1}^{n+k}w_{i}(x_{i}-{\bar {x}}_{n})}{\sum _{i=1}^{n+k}w_{i}}}\\{\bar {y}}_{n+k}&={\bar {y}}_{n}&\,+\,&{\frac {\sum _{i=n+1}^{n+k}w_{i}(y_{i}-{\bar {y}}_{n})}{\sum _{i=1}^{n+k}w_{i}}}\\C_{n+k}&=C_{n}&\,+\,&\sum _{i=n+1}^{n+k}w_{i}(x_{i}-{\bar {x}}_{n+k})(y_{i}-{\bar {y}}_{n})\\&=C_{n}&\,+\,&\sum _{i=n+1}^{n+k}w_{i}(x_{i}-{\bar {x}}_{n})(y_{i}-{\bar {y}}_{n+k})\\\end{alignedat}}} 6440: 5096: 10806: 5709:{\displaystyle {\begin{aligned}M_{3,X}=M_{3,A}+M_{3,B}&{}+\delta ^{3}{\frac {n_{A}n_{B}(n_{A}-n_{B})}{n_{X}^{2}}}+3\delta {\frac {n_{A}M_{2,B}-n_{B}M_{2,A}}{n_{X}}}\\M_{4,X}=M_{4,A}+M_{4,B}&{}+\delta ^{4}{\frac {n_{A}n_{B}\left(n_{A}^{2}-n_{A}n_{B}+n_{B}^{2}\right)}{n_{X}^{3}}}\\&{}+6\delta ^{2}{\frac {n_{A}^{2}M_{2,B}+n_{B}^{2}M_{2,A}}{n_{X}^{2}}}+4\delta {\frac {n_{A}M_{3,B}-n_{B}M_{3,A}}{n_{X}}}\end{aligned}}} 6001: 4575: 11288:{\displaystyle {\begin{alignedat}{2}{\bar {x}}_{n}&={\bar {x}}_{n-1}&\,+\,&{\frac {x_{n}-{\bar {x}}_{n-1}}{n}}\\{\bar {y}}_{n}&={\bar {y}}_{n-1}&\,+\,&{\frac {y_{n}-{\bar {y}}_{n-1}}{n}}\\C_{n}&=C_{n-1}&\,+\,&(x_{n}-{\bar {x}}_{n})(y_{n}-{\bar {y}}_{n-1})\\&=C_{n-1}&\,+\,&(x_{n}-{\bar {x}}_{n-1})(y_{n}-{\bar {y}}_{n})\end{alignedat}}} 2761: 6435:{\displaystyle {\begin{aligned}\delta &=x-m\\m'&=m+{\frac {\delta }{n}}\\M_{2}'&=M_{2}+\delta ^{2}{\frac {n-1}{n}}\\M_{3}'&=M_{3}+\delta ^{3}{\frac {(n-1)(n-2)}{n^{2}}}-{\frac {3\delta M_{2}}{n}}\\M_{4}'&=M_{4}+{\frac {\delta ^{4}(n-1)(n^{2}-3n+3)}{n^{3}}}+{\frac {6\delta ^{2}M_{2}}{n^{2}}}-{\frac {4\delta M_{3}}{n}}\end{aligned}}} 9854: 7657: 3436: 4249: 3049: 9138: 5958: 6884:
Choi and Sweetman offer two alternative methods to compute the skewness and kurtosis, each of which can save substantial computer memory requirements and CPU time in certain applications. The first approach is to compute the statistical moments by separating the data into bins and then computing the
8032:
The second approach from Choi and Sweetman is an analytical methodology to combine statistical moments from individual segments of a time-history such that the resulting overall moments are those of the complete time-history. This methodology could be used for parallel computation of statistical
6889:
for higher moments. One benefit is that the statistical moment calculations can be carried out to arbitrary accuracy such that the computations can be tuned to the precision of, e.g., the data storage format or the original measurement hardware. A relative histogram of a random variable can be
431: 2455: 7381: 1822:
is small. However, the results of both of these simple algorithms ("naĆÆve" and "two-pass") can depend inordinately on the ordering of the data and can give poor results for very large data sets due to repeated roundoff error in the accumulation of the sums. Techniques such as
8396: 870:
are small then there are no problems with the sum of its squares, on the contrary, if they are large it necessarily means that the variance is large as well. In any case the second term in the formula is always smaller than the first one therefore no cancellation may occur.
242: 13039: 5027:
arithmetic. Consider the sample (4, 7, 13, 16) from an infinite population. Based on this sample, the estimated population mean is 10, and the unbiased estimate of population variance is 30. Both the naĆÆve algorithm and two-pass algorithm compute these values correctly.
9340: 9552: 7389: 2447: 3180: 4570:{\displaystyle {\begin{aligned}n_{AB}&=n_{A}+n_{B}\\\delta &={\bar {x}}_{B}-{\bar {x}}_{A}\\{\bar {x}}_{AB}&={\bar {x}}_{A}+\delta \cdot {\frac {n_{B}}{n_{AB}}}\\M_{2,AB}&=M_{2,A}+M_{2,B}+\delta ^{2}\cdot {\frac {n_{A}n_{B}}{n_{AB}}}\\\end{aligned}}} 3874:, but might not be as efficient because of the division operation inside the loop. For a particularly robust two-pass algorithm for computing the variance, one can first compute and subtract an estimate of the mean, and then use this algorithm on the residuals. 2769: 8946: 6890:
constructed in the conventional way: the range of potential values is divided into bins and the number of occurrences within each bin are counted and plotted such that the area of each rectangle equals the portion of the sample values within that bin:
8027: 10390: 806: 5801: 1676: 2135: 536:
used to perform the computation. Thus this algorithm should not be used in practice, and several alternate, numerically stable, algorithms have been proposed. This is particularly bad if the standard deviation is small relative to the mean.
2260: 9859:
and again choosing a value inside the range of values will stabilize the formula against catastrophic cancellation as well as make it more robust against big sums. Taking the first value of each data set, the algorithm can be written as:
8664: 8841: 8163: 4841: 13924: 5066:). Again the estimated population variance of 30 is computed correctly by the two-pass algorithm, but the naĆÆve algorithm now computes it as āˆ’170.66666666666666. This is a serious problem with naĆÆve algorithm and is due to 10798: 11539: 6006: 11416: 7878: 269: 2756:{\displaystyle \sigma _{n}^{2}={\frac {(n-1)\,\sigma _{n-1}^{2}+(x_{n}-{\bar {x}}_{n-1})(x_{n}-{\bar {x}}_{n})}{n}}=\sigma _{n-1}^{2}+{\frac {(x_{n}-{\bar {x}}_{n-1})(x_{n}-{\bar {x}}_{n})-\sigma _{n-1}^{2}}{n}}.} 1966: 613: 5101: 3185: 7194: 5047:), which gives rise to the same estimated variance as the first sample. The two-pass algorithm computes this variance estimate correctly, but the naĆÆve algorithm returns 29.333333333333332 instead of 30. 1551: 8262: 5806: 64: 12852: 9849:{\displaystyle \operatorname {Cov} (X,Y)=\operatorname {Cov} (X-k_{x},Y-k_{y})={\dfrac {\sum _{i=1}^{n}(x_{i}-k_{x})(y_{i}-k_{y})-(\sum _{i=1}^{n}(x_{i}-k_{x}))(\sum _{i=1}^{n}(y_{i}-k_{y}))/n}{n}}.} 7652:{\displaystyle \theta _{n}^{(h)}=\sum _{k=1}^{K}{\Big (}x_{k}-m_{1}^{(h)}{\Big )}^{n}\,H(x_{k})\,\Delta x_{k}={\frac {1}{A}}\sum _{k=1}^{K}{\Big (}x_{k}-m_{1}^{(h)}{\Big )}^{n}h(x_{k})\,\Delta x_{k}} 9166: 3431:{\displaystyle {\begin{aligned}M_{2,n}&=M_{2,n-1}+(x_{n}-{\bar {x}}_{n-1})(x_{n}-{\bar {x}}_{n})\\\sigma _{n}^{2}&={\frac {M_{2,n}}{n}}\\s_{n}^{2}&={\frac {M_{2,n}}{n-1}}\end{aligned}}} 3139: 4686: 2272: 7137: 11555: 4254: 3044:{\displaystyle s_{n}^{2}={\frac {n-2}{n-1}}\,s_{n-1}^{2}+{\frac {(x_{n}-{\bar {x}}_{n-1})^{2}}{n}}=s_{n-1}^{2}+{\frac {(x_{n}-{\bar {x}}_{n-1})^{2}}{n}}-{\frac {s_{n-1}^{2}}{n-1}},\quad n>1} 10253: 10181: 9133:{\displaystyle \mu _{c}=m_{1,c}\qquad \sigma _{c}^{2}=\theta _{2,c}\qquad \alpha _{3,c}={\frac {\theta _{3,c}}{\sigma _{c}^{3}}}\qquad \alpha _{4,c}={\frac {\theta _{4,c}}{\sigma _{c}^{4}}}-3} 8938: 6958: 5793: 8940:) are then used to compute the central moments of the concatenated time-history. Finally, the statistical moments of the concatenated history are computed from the central moments: 7731: 5050:
While this loss of precision may be tolerable and viewed as a minor flaw of the naĆÆve algorithm, further increasing the offset makes the error catastrophic. Consider the sample (
3488: 2022: 1866:
only once; for example, when the data is being collected without enough storage to keep all the values, or when costs of memory access dominate those of computation. For such an
7886: 10259: 4622: 13090: 5953:{\displaystyle {\begin{aligned}&{\text{skewness}}=g_{1}={\frac {{\sqrt {n}}M_{3}}{M_{2}^{3/2}}},\\&{\text{kurtosis}}=g_{2}={\frac {nM_{4}}{M_{2}^{2}}}-3.\end{aligned}}} 644: 8207: 8432: 3534: 7768: 1562: 10660: 10623: 8234: 2027: 6471: 868: 8485: 7033: 6997: 8733: 8713: 8508: 5993: 4719: 3172: 9544: 8462: 7692: 2144: 9514: 8871: 8556: 7060: 5744: 1864: 8693: 7186: 831:
is to the mean value the more accurate the result will be, but just choosing a value inside the samples range will guarantee the desired stability. If the values
8741: 8548: 8528: 8254: 8059: 8054: 7157: 4241: 4221: 892: 829: 636: 6877:, for the incremental and the pairwise cases, and subsequently PĆ©baĆæ et al. for weighted and compound moments. One can also find there similar formulas for 4724: 13834: 10676: 11421: 7776: 426:{\displaystyle s^{2}=\left({\frac {\sum _{i=1}^{n}x_{i}^{2}}{n}}-\left({\frac {\sum _{i=1}^{n}x_{i}}{n}}\right)^{2}\right)\cdot {\frac {n}{n-1}}.} 11301: 14394:"Numerically Stable, Scalable Formulas for Parallel and Online Computation of Higher-Order Multivariate Central Moments with Arbitrary Weights" 14321:. Department of Computer Science, Stanford University. Technical Report STAN-CS-79-773, supported in part by Army contract No. DAAGEI-ā€˜E-G-013. 10811: 14505: 4203:
Chan et al. note that Welford's online algorithm detailed above is a special case of an algorithm that works for combining arbitrary sets
1893: 559: 7376:{\displaystyle m_{n}^{(h)}=\sum _{k=1}^{K}x_{k}^{n}H(x_{k})\,\Delta x_{k}={\frac {1}{A}}\sum _{k=1}^{K}x_{k}^{n}h(x_{k})\,\Delta x_{k}} 14038: 8391:{\displaystyle \gamma _{n,q}=m_{n,q}\gamma _{0,q}\qquad \quad {\textrm {for}}\quad n=1,2,3,4\quad {\text{ and }}\quad q=1,2,\dots ,Q} 237:{\displaystyle \sigma ^{2}={\overline {(x^{2})}}-{\bar {x}}^{2}={\frac {\sum _{i=1}^{N}x_{i}^{2}-(\sum _{i=1}^{N}x_{i})^{2}/N}{N}}.} 1481: 13034:{\displaystyle C_{X}=C_{A}+C_{B}+({\bar {x}}_{A}-{\bar {x}}_{B})({\bar {y}}_{A}-{\bar {y}}_{B})\cdot {\frac {n_{A}n_{B}}{n_{X}}}.} 11541:. Even greater accuracy can be achieved by first computing the means, then using the stable one-pass algorithm on the residuals. 3054:
These formulas suffer from numerical instability , as they repeatedly subtract a small number from a big number which scales with
9335:{\displaystyle \operatorname {Cov} (X,Y)={\frac {\sum _{i=1}^{n}x_{i}y_{i}-(\sum _{i=1}^{n}x_{i})(\sum _{i=1}^{n}y_{i})/n}{n}}.} 14333: 8033:
moments with subsequent combination of those moments, or for combination of statistical moments computed at sequential times.
2442:{\displaystyle {\bar {x}}_{n}={\frac {(n-1)\,{\bar {x}}_{n-1}+x_{n}}{n}}={\bar {x}}_{n-1}+{\frac {x_{n}-{\bar {x}}_{n-1}}{n}}} 14132: 14122: 13978: 6473:, only one division operation is needed and the higher-order statistics can thus be calculated for little incremental cost. 4193: 4627: 3061: 14434:
Choi, Myoungkeun; Sweetman, Bert (2010). "Efficient Calculation of Statistical Moments for Structural Health Monitoring".
13103: 14381:. Technical Report SAND2008-6212, TRN: US201201%%57, DOE Contract Number: AC04-94AL85000 – via UNT Digital Library. 7065: 12846:
Likewise, there is a formula for combining the covariances of two sets that can be used to parallelize the computation:
10673:
A stable one-pass algorithm exists, similar to the online algorithm for computing the variance, that computes co-moment
10187: 10115: 9489:
As for the variance, the covariance of two random variables is also shift-invariant, so given any two constant values
14079: 8876: 1874:
is required between quantities from which the required statistics can be calculated in a numerically stable fashion.
6896: 13940: 14363:. Sponsoring Org.: USDOE. Albuquerque, NM, and Livermore, CA (United States): Sandia National Laboratories (SNL). 14500: 14192: 10588:
A slightly more accurate compensated version performs the full naive algorithm on the residuals. The final sums
4581:
This may be useful when, for example, multiple processing units may be assigned to discrete parts of the input.
5749: 895: 8022:{\displaystyle \theta _{n}^{(h)}={\frac {1}{I}}\sum _{k=1}^{K}{\Big (}x_{k}-m_{1}^{(h)}{\Big )}^{n}h(x_{k})} 14361:"Formulas for Robust, One-Pass Parallel Computation of Covariances and Arbitrary-Order Statistical Moments" 10385:{\displaystyle \operatorname {Cov} (X,Y)={\frac {\sum _{i=1}^{n}(x_{i}-{\bar {x}})(y_{i}-{\bar {y}})}{n}}.} 7697: 3444: 1975: 801:{\displaystyle \sigma ^{2}={\frac {\sum _{i=1}^{n}(x_{i}-K)^{2}-(\sum _{i=1}^{n}(x_{i}-K))^{2}/n}{n-1}}.} 4587: 14315: 13052: 8735:
can then be inversely transformed into raw moments representing the complete concatenated time-history
5004: 3441:
This algorithm was found by Welford, and it has been thoroughly analyzed. It is also common to denote
502:
This algorithm can easily be adapted to compute the variance of a finite population: simply divide by
14270: 14210:
Ling, Robert F. (1974). "Comparison of Several Algorithms for Computing Sample Means and Variances".
13935: 8168: 5067: 3871: 1671:{\displaystyle {\text{sample variance}}=s^{2}={\dfrac {\sum _{i=1}^{n}(x_{i}-{\bar {x}})^{2}}{n-1}},} 1475:
An alternative approach, using a different formula for the variance, first computes the sample mean,
533: 525: 2130:{\textstyle \sigma _{n}^{2}={\frac {1}{n}}\sum _{i=1}^{n}\left(x_{i}-{\overline {x}}_{n}\right)^{2}} 8404: 5008: 3493: 23: 14151:
Welford, B. P. (1962). "Note on a method for calculating corrected sums of squares and products".
7736: 8212: 546: 10628: 10591: 2255:{\textstyle s_{n}^{2}={\frac {1}{n-1}}\sum _{i=1}^{n}\left(x_{i}-{\overline {x}}_{n}\right)^{2}} 14476: 6448: 834: 529: 248: 51: 8659:{\displaystyle \gamma _{n,c}=\sum _{q=1}^{Q}\gamma _{n,q}\quad \quad {\text{for }}n=0,1,2,3,4} 8467: 7002: 6966: 8718: 8698: 8493: 5966: 4691: 3894: 3889:
The algorithm can be extended to handle unequal sample weights, replacing the simple counter
3144: 3058:. A better quantity for updating is the sum of squares of differences from the current mean, 1824: 35: 9519: 8437: 7665: 2263: 436:
Therefore, a naĆÆve algorithm to calculate the estimated variance is given by the following:
14360: 14007: 9492: 8849: 7038: 5722: 5024: 1842: 14104: 8836:{\displaystyle m_{n,c}={\frac {\gamma _{n,c}}{\gamma _{0,c}}}\quad {\text{for }}n=1,2,3,4} 8672: 8158:{\displaystyle (\gamma _{0,q},\mu _{q},\sigma _{q}^{2},\alpha _{3,q},\alpha _{4,q})\quad } 7162: 2138: 8: 1871: 39: 14451: 14413: 14289: 14227: 14170: 14085: 14030: 8533: 8513: 8239: 8039: 7142: 6886: 4226: 4206: 1836: 877: 814: 621: 553:, a property which can be used to avoid the catastrophic cancellation in this formula. 550: 256: 13049:
A version of the weighted online algorithm that does batched updated also exists: let
6817:# Caution: If all the inputs are the same, M2 will be 0, resulting in a division by 0. 4836:{\textstyle {\bar {x}}_{AB}={\frac {n_{A}{\bar {x}}_{A}+n_{B}{\bar {x}}_{B}}{n_{AB}}}} 14473: 14417: 14372: 14128: 14118: 14075: 13974: 14455: 14293: 14251:
John D. Cook Consulting: Expert consulting in applied mathematics & data privacy
14089: 14061: 14443: 14405: 14364: 14337: 14279: 14246: 14219: 14162: 14110: 14067: 14026: 14022: 13945: 13919:{\displaystyle \operatorname {Cov} _{N}(X,Y)={\frac {C_{N}}{\sum _{i=1}^{N}w_{i}}}} 5012: 1867: 1109:
This formula also facilitates the incremental computation that can be expressed as
14109:(2nd ed.). Philadelphia, PA: Society for Industrial and Applied Mathematics. 6885:
moments from the geometry of the resulting histogram, which effectively becomes a
14187: 13968: 10109:
The two-pass algorithm first computes the sample means, and then the covariance:
7694:
indicates the moments are calculated from the histogram. For constant bin width
1095:# use n instead of (n-1) if want to compute the exact variance of the given data 6874: 5079: 5070:
in the subtraction of two similar numbers at the final stage of the algorithm.
252: 14409: 14392:
PĆ©baĆæ, Philippe; Terriberry, Timothy; Kolla, Hemanth; Bennett, Janine (2016).
10793:{\textstyle C_{n}=\sum _{i=1}^{n}(x_{i}-{\bar {x}}_{n})(y_{i}-{\bar {y}}_{n})} 8530:
sets can be combined by addition, and there is no upper limit on the value of
3881:
below illustrates how to merge multiple sets of statistics calculated online.
14494: 14447: 14311: 14153: 14003: 11534:{\textstyle {\frac {n-1}{n}}(x_{n}-{\bar {x}}_{n-1})(y_{n}-{\bar {y}}_{n-1})} 6476:
An example of the online algorithm for kurtosis implemented as described is:
14114: 14071: 14008:"Algorithms for computing the sample variance: Analysis and recommendations" 11411:{\textstyle (x_{n}-{\bar {x}}_{n})={\frac {n-1}{n}}(x_{n}-{\bar {x}}_{n-1})} 7873:{\displaystyle m_{n}^{(h)}={\frac {1}{I}}\sum _{k=1}^{K}x_{k}^{n}\,h(x_{k})} 14316:"Updating Formulae and a Pairwise Algorithm for Computing Sample Variances" 14307: 13999: 1556:
and then computes the sum of the squares of the differences from the mean,
14284: 14265: 12506:
A small modification can also be made to compute the weighted covariance:
3544:# For a new value new_value, compute the new count, new mean, the new M2. 3539:
An example Python implementation for Welford's algorithm is given below.
14138: 14231: 14174: 14034: 9149: 6878: 6814:# Note, you may also calculate variance using M2, and skewness using M3 5078:
Terriberry extends Chan's formulae to calculating the third and fourth
14377: 14481: 11298:
The apparent asymmetry in that last equation is due to the fact that
27: 14471: 14393: 14368: 14223: 14166: 1881:
and (estimated) variance of the sequence, for an additional element
5087: 5083: 4584:
Chan's method for estimating the mean is numerically unstable when
3697:# Retrieve the mean, variance and sample variance from an aggregate 1961:{\textstyle {\overline {x}}_{n}={\frac {1}{n}}\sum _{i=1}^{n}x_{i}} 31: 9345:
For the algorithm above, one could use the following Python code:
7139:
is the total area of the histogram. After this normalization, the
608:{\displaystyle \operatorname {Var} (X-K)=\operatorname {Var} (X).} 1685:
is the standard deviation. This is given by the following code:
532:
of the result to be much less than the inherent precision of the
3893:
with the sum of weights seen so far. West (1979) suggests this
10665:
be zero, but the second pass compensates for any small error.
8490:
The benefit of expressing the statistical moments in terms of
3870:
This algorithm is much less prone to loss of precision due to
1546:{\displaystyle {\bar {x}}={\frac {\sum _{j=1}^{n}x_{j}}{n}},} 14391: 1878: 1835:
It is often useful to be able to compute the variance in a
14266:"Updating Mean and Variance Estimates: An Improved Method" 7035:
represent the frequency and the relative frequency at bin
5746:
are again the sums of powers of differences from the mean
14063:
Numerically stable parallel computation of (co-)variance
4194:
Weighted arithmetic mean Ā§ Weighted sample variance
6873:
PĆ©baĆæ further extends these results to arbitrary-order
5023:
Assume that all floating point operations use standard
11424: 11304: 10679: 10631: 10594: 7068: 5752: 5003:
This can be generalized to allow parallelization with
4727: 3134:{\textstyle \sum _{i=1}^{n}(x_{i}-{\bar {x}}_{n})^{2}} 3064: 2147: 2030: 1896: 1098:# use (n-1) if data are samples of a larger population 13837: 13101: 13055: 12855: 11553: 10809: 10262: 10190: 10118: 9631: 9555: 9522: 9495: 9169: 8949: 8879: 8852: 8744: 8721: 8701: 8695:
represents the concatenated time-history or combined
8675: 8559: 8536: 8516: 8496: 8470: 8440: 8407: 8265: 8242: 8215: 8171: 8062: 8042: 7889: 7779: 7739: 7700: 7668: 7392: 7197: 7165: 7145: 7041: 7005: 6969: 6899: 6451: 6004: 5969: 5804: 5725: 5099: 4694: 4681:{\displaystyle \delta ={\bar {x}}_{B}-{\bar {x}}_{A}} 4630: 4590: 4252: 4229: 4209: 3496: 3447: 3183: 3147: 2772: 2458: 2275: 1978: 1845: 1588: 1565: 1484: 880: 837: 817: 647: 624: 562: 272: 67: 7132:{\textstyle A=\sum _{k=1}^{K}h(x_{k})\,\Delta x_{k}} 3553:# count aggregates the number of samples seen so far 50:
A formula for calculating the variance of an entire
9148:Very similar algorithms can be used to compute the 4624:and both are large, because the numerical error in 13918: 13817: 13084: 13033: 12272: 11533: 11410: 11287: 10792: 10654: 10617: 10384: 10247: 10175: 9848: 9538: 9508: 9334: 9132: 8932: 8865: 8835: 8727: 8707: 8687: 8658: 8542: 8522: 8502: 8479: 8456: 8426: 8390: 8248: 8228: 8201: 8157: 8048: 8021: 7872: 7762: 7725: 7686: 7651: 7375: 7180: 7151: 7131: 7054: 7027: 6991: 6952: 6465: 6434: 5987: 5952: 5787: 5738: 5708: 4835: 4713: 4680: 4616: 4569: 4235: 4215: 3550:# M2 aggregates the squared distance from the mean 3528: 3482: 3430: 3166: 3133: 3043: 2755: 2441: 2254: 2129: 2016: 1960: 1858: 1670: 1545: 886: 862: 823: 800: 630: 607: 425: 255:estimate of the population variance from a finite 236: 10248:{\displaystyle {\bar {y}}=\sum _{i=1}^{n}y_{i}/n} 10176:{\displaystyle {\bar {x}}=\sum _{i=1}^{n}x_{i}/n} 7989: 7947: 7605: 7563: 7482: 7440: 3884: 3547:# mean accumulates the mean of the entire dataset 1877:The following formulas can be used to update the 14492: 14306: 14200:, 3rd edn., p. 232. Boston: Addison-Wesley. 13998: 13970:Accuracy and Reliability in Scientific Computing 4688:is not scaled down in the way that it is in the 14212:Journal of the American Statistical Association 14060:Schubert, Erich; Gertz, Michael (9 July 2018). 13962: 13960: 8933:{\displaystyle \theta _{n}=\operatorname {E} )} 7188:can be calculated from the relative histogram: 34:may involve sums of squares, which can lead to 14106:Accuracy and Stability of Numerical Algorithms 7733:these two expressions can be simplified using 6953:{\displaystyle H(x_{k})={\frac {h(x_{k})}{A}}} 4121:# Bessel's correction for weighted samples 1827:can be used to combat this error to a degree. 14059: 12775:# Bessel's correction for sample variance 12474:# Bessel's correction for sample variance 8846:Known relationships between the raw moments ( 8434:is generally taken to be the duration of the 1830: 638:any constant, which leads to the new formula 14433: 14103:Higham, Nicholas J. (2002). "Problem 1.10". 13957: 9484: 8236:can be expressed in terms of the equivalent 5982: 5976: 16:Important algorithms in numerical statistics 14429: 14427: 14332:Terriberry, Timothy B. (15 October 2008) . 13044: 14331: 13994: 13992: 13990: 10395:The two-pass algorithm may be written as: 5073: 30:for this problem is that formulas for the 14376: 14359:PĆ©bay, Philippe Pierre (September 2008). 14283: 13966: 13681: 13677: 13525: 13521: 13353: 13349: 13163: 13159: 11194: 11190: 11075: 11071: 10982: 10978: 10871: 10867: 8464:time-history, or the number of points if 7850: 7635: 7513: 7493: 7359: 7277: 7115: 5788:{\textstyle \sum (x-{\overline {x}})^{k}} 2817: 2495: 2316: 540: 494:Var = (SumSq āˆ’ (Sum Ɨ Sum) / n) / (n āˆ’ 1) 26:. A key difficulty in the design of good 14424: 1818:This algorithm is numerically stable if 14436:Journal of Structural Health Monitoring 14334:"Computing Higher-Order Moments Online" 14314:; LeVeque, Randall J. (November 1979). 14150: 13987: 13828:The covariance can then be computed as 11544:Thus the covariance can be computed as 8056:sets of statistical moments are known: 3878: 14493: 14247:"Accurately computing sample variance" 14102: 14472: 14358: 7726:{\displaystyle \Delta x_{k}=\Delta x} 5082:, needed for example when estimating 4198: 1968:denotes the sample mean of the first 1470: 874:If just the first sample is taken as 14506:Statistical deviation and dispersion 14263: 14245:Cook, John D. (30 September 2022) . 14244: 14209: 14055: 14053: 14051: 14044:from the original on 9 October 2022. 11418:, so both update terms are equal to 9155: 3483:{\displaystyle M_{k}={\bar {x}}_{k}} 2017:{\displaystyle (x_{1},\dots ,x_{n})} 7159:raw moments and central moments of 20:Algorithms for calculating variance 13: 14300: 8893: 8471: 7754: 7717: 7701: 7636: 7514: 7360: 7278: 7116: 4617:{\displaystyle n_{A}\approx n_{B}} 45: 14: 14517: 14465: 14048: 13085:{\displaystyle w_{1},\dots w_{N}} 510: āˆ’ 1 on the last line. 13941:Squared deviations from the mean 5963:For the incremental case (i.e., 894:the algorithm can be written in 42:when dealing with large values. 14385: 14352: 14325: 14193:The Art of Computer Programming 9069: 9014: 8979: 8800: 8617: 8616: 8360: 8354: 8326: 8318: 8317: 8202:{\displaystyle q=1,2,\ldots ,Q} 8154: 3031: 14257: 14238: 14203: 14181: 14144: 14096: 14027:10.1080/00031305.1983.10483115 14006:; LeVeque, Randall J. (1983). 13863: 13851: 13808: 13790: 13767: 13764: 13752: 13729: 13652: 13640: 13617: 13614: 13596: 13573: 13437: 13425: 13402: 13335: 13303: 13247: 13235: 13212: 13145: 13113: 13092:denote the weights, and write 12986: 12974: 12952: 12942: 12939: 12927: 12905: 12895: 12254: 12242: 12219: 12216: 12204: 12181: 12157: 12145: 12139: 12127: 12086: 12068: 12045: 12042: 12024: 12001: 11977: 11965: 11959: 11947: 11906: 11894: 11871: 11868: 11850: 11827: 11821: 11809: 11803: 11791: 11750: 11732: 11709: 11706: 11694: 11671: 11665: 11653: 11647: 11635: 11583: 11571: 11528: 11510: 11487: 11484: 11466: 11443: 11405: 11387: 11364: 11340: 11328: 11305: 11278: 11266: 11243: 11240: 11222: 11199: 11159: 11141: 11118: 11115: 11103: 11080: 11008: 10958: 10932: 10897: 10847: 10821: 10787: 10775: 10752: 10749: 10737: 10714: 10370: 10364: 10342: 10339: 10333: 10311: 10281: 10269: 10197: 10125: 9825: 9822: 9796: 9772: 9769: 9766: 9740: 9716: 9710: 9684: 9681: 9655: 9624: 9586: 9574: 9562: 9312: 9278: 9275: 9241: 9188: 9176: 8927: 8924: 8915: 8902: 8899: 8151: 8063: 8016: 8003: 7981: 7975: 7906: 7900: 7867: 7854: 7796: 7790: 7679: 7673: 7632: 7619: 7597: 7591: 7510: 7497: 7474: 7468: 7409: 7403: 7356: 7343: 7274: 7261: 7214: 7208: 7175: 7169: 7112: 7099: 7022: 7009: 6986: 6973: 6941: 6928: 6916: 6903: 6342: 6314: 6311: 6299: 6205: 6193: 6190: 6178: 5776: 5756: 5226: 5200: 4805: 4773: 4735: 4666: 4644: 4395: 4366: 4343: 4321: 3885:Weighted incremental algorithm 3468: 3315: 3303: 3280: 3277: 3259: 3236: 3122: 3109: 3086: 2974: 2955: 2932: 2887: 2868: 2845: 2717: 2705: 2682: 2679: 2661: 2638: 2599: 2587: 2564: 2561: 2543: 2520: 2492: 2480: 2415: 2371: 2324: 2313: 2301: 2283: 2011: 1979: 1641: 1634: 1612: 1491: 857: 838: 764: 760: 741: 717: 705: 685: 599: 593: 581: 569: 263:observations, the formula is: 208: 173: 116: 97: 84: 1: 14477:"Sample Variance Computation" 13951: 9143: 8427:{\displaystyle \gamma _{0,q}} 3905:weighted_incremental_variance 3529:{\displaystyle S_{k}=M_{2,k}} 549:with respect to changes in a 524:can be very similar numbers, 7763:{\displaystyle I=A/\Delta x} 5770: 4721:case. In such cases, prefer 2230: 2105: 1903: 101: 7: 13929: 10655:{\textstyle \sum _{i}y_{i}} 10618:{\textstyle \sum _{i}x_{i}} 10104: 8873:) and the central moments ( 8715:. These combined values of 8229:{\displaystyle \gamma _{n}} 4157:sample_reliability_variance 896:Python programming language 10: 14522: 14404:(4). Springer: 1305ā€“1325. 12514:online_weighted_covariance 5031:Next consider the sample ( 5018: 4191: 1831:Welford's online algorithm 14410:10.1007/s00180-015-0637-z 14271:Communications of the ACM 14015:The American Statistician 13936:Kahan summation algorithm 10668: 9485:With estimate of the mean 6466:{\displaystyle \delta /n} 5068:catastrophic cancellation 5025:IEEE 754 double-precision 4127:sample_frequency_variance 3872:catastrophic cancellation 863:{\displaystyle (x_{i}-K)} 534:floating-point arithmetic 14448:10.1177/1475921709341014 14398:Computational Statistics 14198:Seminumerical Algorithms 14137:Metadata also listed at 13045:Weighted batched version 12811:sample_reliability_covar 12508: 12282: 10397: 9862: 9347: 8480:{\displaystyle \Delta t} 7028:{\displaystyle H(x_{k})} 6992:{\displaystyle h(x_{k})} 6478: 6445:By preserving the value 4845: 3899: 3541: 2264:unbiased sample variance 1839:, inspecting each value 1687: 1111: 900: 24:computational statistics 14264:West, D. H. D. (1979). 14115:10.1137/1.9780898718027 14072:10.1145/3221269.3223036 9868:shifted_data_covariance 9160:The naĆÆve algorithm is 8728:{\displaystyle \gamma } 8708:{\displaystyle \gamma } 8503:{\displaystyle \gamma } 5995:), this simplifies to: 5988:{\displaystyle B=\{x\}} 5074:Higher-order statistics 4714:{\displaystyle n_{B}=1} 3167:{\displaystyle M_{2,n}} 448:ā† 0, Sum ā† 0, SumSq ā† 0 14501:Statistical algorithms 13967:Einarsson, Bo (2005). 13920: 13902: 13819: 13718: 13562: 13468: 13391: 13278: 13201: 13086: 13035: 12781:sample_frequency_covar 12274: 11535: 11412: 11289: 10794: 10713: 10656: 10619: 10386: 10310: 10249: 10226: 10177: 10154: 9850: 9795: 9739: 9654: 9540: 9539:{\displaystyle k_{y},} 9510: 9336: 9301: 9264: 9217: 9134: 8934: 8867: 8837: 8729: 8709: 8689: 8660: 8599: 8544: 8524: 8504: 8481: 8458: 8457:{\displaystyle q^{th}} 8428: 8392: 8250: 8230: 8203: 8159: 8050: 8023: 7944: 7874: 7834: 7764: 7727: 7688: 7687:{\displaystyle ^{(h)}} 7662:where the superscript 7653: 7560: 7437: 7377: 7324: 7242: 7182: 7153: 7133: 7095: 7056: 7029: 6993: 6954: 6467: 6436: 5989: 5954: 5789: 5740: 5710: 4837: 4715: 4682: 4618: 4571: 4237: 4217: 3530: 3484: 3432: 3168: 3135: 3085: 3045: 2757: 2443: 2256: 2204: 2139:biased sample variance 2131: 2079: 2018: 1962: 1947: 1860: 1672: 1611: 1547: 1523: 888: 864: 825: 802: 740: 684: 632: 609: 541:Computing shifted data 427: 367: 314: 238: 196: 154: 14285:10.1145/359146.359153 13921: 13882: 13820: 13686: 13530: 13442: 13359: 13252: 13169: 13087: 13036: 12808:# Reliability weights 12275: 11536: 11413: 11290: 10795: 10693: 10657: 10620: 10387: 10290: 10250: 10206: 10178: 10134: 9851: 9775: 9719: 9634: 9541: 9511: 9509:{\displaystyle k_{x}} 9337: 9281: 9244: 9197: 9135: 8935: 8868: 8866:{\displaystyle m_{n}} 8838: 8730: 8710: 8690: 8661: 8579: 8545: 8525: 8505: 8482: 8459: 8429: 8393: 8251: 8231: 8204: 8160: 8051: 8024: 7924: 7875: 7814: 7765: 7728: 7689: 7654: 7540: 7417: 7378: 7304: 7222: 7183: 7154: 7134: 7075: 7057: 7055:{\displaystyle x_{k}} 7030: 6994: 6955: 6468: 6437: 5990: 5955: 5790: 5741: 5739:{\displaystyle M_{k}} 5711: 5015:, and to covariance. 4838: 4716: 4683: 4619: 4572: 4238: 4218: 4192:Further information: 4154:# Reliability weights 3895:incremental algorithm 3531: 3485: 3433: 3169: 3136: 3065: 3046: 2758: 2444: 2257: 2184: 2132: 2059: 2019: 1963: 1927: 1861: 1859:{\displaystyle x_{i}} 1825:compensated summation 1673: 1591: 1548: 1503: 906:shifted_data_variance 889: 865: 826: 803: 720: 664: 633: 610: 428: 347: 294: 239: 176: 134: 36:numerical instability 22:play a major role in 13973:. SIAM. p. 47. 13835: 13099: 13053: 12853: 11551: 11422: 11302: 10807: 10677: 10629: 10592: 10260: 10188: 10116: 9553: 9520: 9493: 9167: 8947: 8877: 8850: 8742: 8719: 8699: 8688:{\displaystyle _{c}} 8673: 8669:where the subscript 8557: 8534: 8514: 8494: 8468: 8438: 8405: 8263: 8240: 8213: 8169: 8060: 8040: 7887: 7777: 7737: 7698: 7666: 7390: 7195: 7181:{\displaystyle x(t)} 7163: 7143: 7066: 7039: 7003: 6967: 6897: 6449: 6002: 5967: 5802: 5750: 5723: 5097: 4725: 4692: 4628: 4588: 4250: 4227: 4207: 3494: 3445: 3181: 3145: 3062: 2770: 2456: 2273: 2145: 2028: 1976: 1894: 1843: 1563: 1482: 878: 835: 815: 645: 622: 560: 270: 65: 14139:ACM Digital Library 14066:. ACM. p. 10. 12778:# Frequency weights 10403:two_pass_covariance 9546:it can be written: 9121: 9066: 8994: 8112: 7985: 7910: 7849: 7800: 7601: 7478: 7413: 7339: 7257: 7218: 6265: 6144: 6079: 5937: 5874: 5619: 5587: 5553: 5508: 5487: 5446: 5244: 4124:# Frequency weights 4106:population_variance 3385: 3336: 3014: 2925: 2838: 2787: 2743: 2631: 2516: 2473: 2162: 2045: 1872:recurrence relation 329: 249:Bessel's correction 169: 40:arithmetic overflow 14474:Weisstein, Eric W. 13916: 13815: 13813: 13082: 13031: 12270: 12268: 11531: 11408: 11285: 11283: 10790: 10652: 10641: 10615: 10604: 10382: 10245: 10173: 9846: 9841: 9536: 9506: 9332: 9130: 9107: 9052: 8980: 8930: 8863: 8833: 8725: 8705: 8685: 8656: 8540: 8520: 8500: 8477: 8454: 8424: 8388: 8246: 8226: 8199: 8155: 8098: 8046: 8019: 7965: 7890: 7870: 7835: 7780: 7760: 7723: 7684: 7649: 7581: 7458: 7393: 7373: 7325: 7243: 7198: 7178: 7149: 7129: 7052: 7025: 6989: 6950: 6887:one-pass algorithm 6463: 6432: 6430: 6253: 6132: 6067: 5985: 5950: 5948: 5923: 5852: 5785: 5736: 5706: 5704: 5605: 5573: 5539: 5494: 5473: 5432: 5230: 4833: 4711: 4678: 4614: 4567: 4565: 4233: 4213: 4199:Parallel algorithm 3879:parallel algorithm 3739:existing_aggregate 3709:existing_aggregate 3601:existing_aggregate 3565:existing_aggregate 3526: 3480: 3428: 3426: 3371: 3322: 3164: 3131: 3041: 2994: 2905: 2818: 2773: 2753: 2723: 2611: 2496: 2459: 2439: 2252: 2148: 2127: 2031: 2014: 1958: 1856: 1668: 1663: 1543: 1471:Two-pass algorithm 884: 860: 821: 798: 628: 605: 551:location parameter 423: 315: 234: 155: 14133:978-0-89871-802-7 14124:978-0-898715-21-7 13980:978-0-89871-584-2 13914: 13793: 13755: 13643: 13599: 13480: 13428: 13338: 13306: 13290: 13238: 13148: 13116: 13026: 12977: 12955: 12930: 12908: 12288:online_covariance 12261: 12245: 12207: 12179: 12093: 12071: 12027: 11999: 11913: 11897: 11853: 11757: 11735: 11697: 11604: 11513: 11469: 11441: 11390: 11362: 11331: 11269: 11225: 11144: 11106: 11030: 11011: 10961: 10935: 10919: 10900: 10850: 10824: 10778: 10740: 10632: 10595: 10377: 10367: 10336: 10200: 10128: 9840: 9327: 9122: 9067: 8804: 8798: 8621: 8543:{\displaystyle Q} 8523:{\displaystyle Q} 8358: 8323: 8249:{\displaystyle n} 8049:{\displaystyle Q} 7922: 7812: 7538: 7302: 7152:{\displaystyle n} 6948: 6426: 6398: 6356: 6247: 6219: 6126: 6061: 5938: 5888: 5875: 5839: 5813: 5773: 5700: 5620: 5509: 5325: 5245: 5064:10 + 16 5060:10 + 13 5045:10 + 16 5041:10 + 13 5013:computer clusters 4851:parallel_variance 4831: 4808: 4776: 4738: 4669: 4647: 4561: 4441: 4398: 4369: 4346: 4324: 4236:{\displaystyle B} 4216:{\displaystyle A} 3959:data_weight_pairs 3911:data_weight_pairs 3471: 3422: 3365: 3306: 3262: 3112: 3026: 2987: 2958: 2900: 2871: 2815: 2748: 2708: 2664: 2606: 2590: 2546: 2437: 2418: 2374: 2359: 2327: 2286: 2233: 2182: 2108: 2057: 1925: 1906: 1693:two_pass_variance 1662: 1637: 1569: 1538: 1494: 887:{\displaystyle K} 824:{\displaystyle K} 793: 631:{\displaystyle K} 418: 382: 334: 229: 119: 104: 14513: 14487: 14486: 14460: 14459: 14431: 14422: 14421: 14389: 14383: 14382: 14380: 14356: 14350: 14349: 14347: 14345: 14340:on 23 April 2014 14336:. Archived from 14329: 14323: 14322: 14320: 14304: 14298: 14297: 14287: 14261: 14255: 14254: 14242: 14236: 14235: 14218:(348): 859ā€“866. 14207: 14201: 14185: 14179: 14178: 14148: 14142: 14136: 14100: 14094: 14093: 14057: 14046: 14045: 14043: 14012: 13996: 13985: 13984: 13964: 13946:Yamartino method 13925: 13923: 13922: 13917: 13915: 13913: 13912: 13911: 13901: 13896: 13880: 13879: 13870: 13847: 13846: 13824: 13822: 13821: 13816: 13814: 13807: 13806: 13795: 13794: 13786: 13779: 13778: 13763: 13762: 13757: 13756: 13748: 13741: 13740: 13728: 13727: 13717: 13706: 13674: 13673: 13658: 13651: 13650: 13645: 13644: 13636: 13629: 13628: 13613: 13612: 13601: 13600: 13592: 13585: 13584: 13572: 13571: 13561: 13550: 13518: 13517: 13501: 13500: 13481: 13479: 13478: 13477: 13467: 13456: 13440: 13436: 13435: 13430: 13429: 13421: 13414: 13413: 13401: 13400: 13390: 13379: 13357: 13346: 13345: 13340: 13339: 13331: 13320: 13319: 13308: 13307: 13299: 13291: 13289: 13288: 13287: 13277: 13266: 13250: 13246: 13245: 13240: 13239: 13231: 13224: 13223: 13211: 13210: 13200: 13189: 13167: 13156: 13155: 13150: 13149: 13141: 13130: 13129: 13118: 13117: 13109: 13091: 13089: 13088: 13083: 13081: 13080: 13065: 13064: 13040: 13038: 13037: 13032: 13027: 13025: 13024: 13015: 13014: 13013: 13004: 13003: 12993: 12985: 12984: 12979: 12978: 12970: 12963: 12962: 12957: 12956: 12948: 12938: 12937: 12932: 12931: 12923: 12916: 12915: 12910: 12909: 12901: 12891: 12890: 12878: 12877: 12865: 12864: 12842: 12839: 12836: 12833: 12830: 12827: 12824: 12821: 12818: 12815: 12812: 12809: 12806: 12803: 12800: 12797: 12794: 12791: 12788: 12785: 12782: 12779: 12776: 12773: 12770: 12767: 12764: 12761: 12760:population_covar 12758: 12755: 12752: 12749: 12746: 12743: 12740: 12737: 12734: 12731: 12728: 12725: 12722: 12719: 12716: 12713: 12710: 12707: 12704: 12701: 12698: 12695: 12692: 12689: 12686: 12683: 12680: 12677: 12674: 12671: 12668: 12665: 12662: 12659: 12656: 12653: 12650: 12647: 12644: 12641: 12638: 12635: 12632: 12629: 12626: 12623: 12620: 12617: 12614: 12611: 12608: 12605: 12602: 12599: 12596: 12593: 12590: 12587: 12584: 12581: 12578: 12575: 12572: 12569: 12566: 12563: 12560: 12557: 12554: 12551: 12548: 12545: 12542: 12539: 12536: 12533: 12530: 12527: 12524: 12521: 12518: 12515: 12512: 12502: 12499: 12496: 12493: 12490: 12487: 12484: 12481: 12478: 12475: 12472: 12469: 12466: 12463: 12460: 12459:population_covar 12457: 12454: 12451: 12448: 12445: 12442: 12439: 12436: 12433: 12430: 12427: 12424: 12421: 12418: 12415: 12412: 12409: 12406: 12403: 12400: 12397: 12394: 12391: 12388: 12385: 12382: 12379: 12376: 12373: 12370: 12367: 12364: 12361: 12358: 12355: 12352: 12349: 12346: 12343: 12340: 12337: 12334: 12331: 12328: 12325: 12322: 12319: 12316: 12313: 12310: 12307: 12304: 12301: 12298: 12295: 12292: 12289: 12286: 12279: 12277: 12276: 12271: 12269: 12262: 12257: 12253: 12252: 12247: 12246: 12238: 12231: 12230: 12215: 12214: 12209: 12208: 12200: 12193: 12192: 12180: 12178: 12164: 12123: 12122: 12106: 12098: 12094: 12089: 12085: 12084: 12073: 12072: 12064: 12057: 12056: 12041: 12040: 12029: 12028: 12020: 12013: 12012: 12000: 11995: 11984: 11943: 11942: 11926: 11918: 11914: 11909: 11905: 11904: 11899: 11898: 11890: 11883: 11882: 11867: 11866: 11855: 11854: 11846: 11839: 11838: 11787: 11786: 11770: 11762: 11758: 11753: 11749: 11748: 11737: 11736: 11728: 11721: 11720: 11705: 11704: 11699: 11698: 11690: 11683: 11682: 11631: 11630: 11614: 11605: 11600: 11599: 11590: 11567: 11566: 11540: 11538: 11537: 11532: 11527: 11526: 11515: 11514: 11506: 11499: 11498: 11483: 11482: 11471: 11470: 11462: 11455: 11454: 11442: 11437: 11426: 11417: 11415: 11414: 11409: 11404: 11403: 11392: 11391: 11383: 11376: 11375: 11363: 11358: 11347: 11339: 11338: 11333: 11332: 11324: 11317: 11316: 11294: 11292: 11291: 11286: 11284: 11277: 11276: 11271: 11270: 11262: 11255: 11254: 11239: 11238: 11227: 11226: 11218: 11211: 11210: 11187: 11186: 11165: 11158: 11157: 11146: 11145: 11137: 11130: 11129: 11114: 11113: 11108: 11107: 11099: 11092: 11091: 11068: 11067: 11045: 11044: 11031: 11026: 11025: 11024: 11013: 11012: 11004: 10997: 10996: 10986: 10975: 10974: 10963: 10962: 10954: 10943: 10942: 10937: 10936: 10928: 10920: 10915: 10914: 10913: 10902: 10901: 10893: 10886: 10885: 10875: 10864: 10863: 10852: 10851: 10843: 10832: 10831: 10826: 10825: 10817: 10799: 10797: 10796: 10791: 10786: 10785: 10780: 10779: 10771: 10764: 10763: 10748: 10747: 10742: 10741: 10733: 10726: 10725: 10712: 10707: 10689: 10688: 10661: 10659: 10658: 10653: 10651: 10650: 10640: 10624: 10622: 10621: 10616: 10614: 10613: 10603: 10584: 10581: 10578: 10575: 10572: 10569: 10566: 10563: 10560: 10557: 10554: 10551: 10548: 10545: 10542: 10539: 10536: 10533: 10530: 10527: 10524: 10521: 10518: 10515: 10512: 10509: 10506: 10503: 10500: 10497: 10494: 10491: 10488: 10485: 10482: 10479: 10476: 10473: 10470: 10467: 10464: 10461: 10458: 10455: 10452: 10449: 10446: 10443: 10440: 10437: 10434: 10431: 10428: 10425: 10422: 10419: 10416: 10413: 10410: 10407: 10404: 10401: 10391: 10389: 10388: 10383: 10378: 10373: 10369: 10368: 10360: 10354: 10353: 10338: 10337: 10329: 10323: 10322: 10309: 10304: 10288: 10254: 10252: 10251: 10246: 10241: 10236: 10235: 10225: 10220: 10202: 10201: 10193: 10182: 10180: 10179: 10174: 10169: 10164: 10163: 10153: 10148: 10130: 10129: 10121: 10100: 10097: 10094: 10091: 10088: 10085: 10082: 10079: 10076: 10073: 10070: 10067: 10064: 10061: 10058: 10055: 10052: 10049: 10046: 10043: 10040: 10037: 10034: 10031: 10028: 10025: 10022: 10019: 10016: 10013: 10010: 10007: 10004: 10001: 9998: 9995: 9992: 9989: 9986: 9983: 9980: 9977: 9974: 9971: 9968: 9965: 9962: 9959: 9956: 9953: 9950: 9947: 9944: 9941: 9938: 9935: 9932: 9929: 9926: 9923: 9920: 9917: 9914: 9911: 9908: 9905: 9902: 9899: 9896: 9893: 9890: 9887: 9884: 9881: 9878: 9875: 9872: 9869: 9866: 9855: 9853: 9852: 9847: 9842: 9836: 9832: 9821: 9820: 9808: 9807: 9794: 9789: 9765: 9764: 9752: 9751: 9738: 9733: 9709: 9708: 9696: 9695: 9680: 9679: 9667: 9666: 9653: 9648: 9632: 9623: 9622: 9604: 9603: 9545: 9543: 9542: 9537: 9532: 9531: 9515: 9513: 9512: 9507: 9505: 9504: 9480: 9477: 9474: 9471: 9468: 9465: 9462: 9459: 9456: 9453: 9450: 9447: 9444: 9441: 9438: 9435: 9432: 9429: 9426: 9423: 9420: 9417: 9414: 9411: 9408: 9405: 9402: 9399: 9396: 9393: 9390: 9387: 9384: 9381: 9378: 9375: 9372: 9369: 9366: 9363: 9360: 9357: 9354: 9353:naive_covariance 9351: 9341: 9339: 9338: 9333: 9328: 9323: 9319: 9311: 9310: 9300: 9295: 9274: 9273: 9263: 9258: 9237: 9236: 9227: 9226: 9216: 9211: 9195: 9139: 9137: 9136: 9131: 9123: 9120: 9115: 9106: 9105: 9090: 9085: 9084: 9068: 9065: 9060: 9051: 9050: 9035: 9030: 9029: 9013: 9012: 8993: 8988: 8978: 8977: 8959: 8958: 8939: 8937: 8936: 8931: 8923: 8922: 8889: 8888: 8872: 8870: 8869: 8864: 8862: 8861: 8842: 8840: 8839: 8834: 8805: 8802: 8799: 8797: 8796: 8781: 8780: 8765: 8760: 8759: 8734: 8732: 8731: 8726: 8714: 8712: 8711: 8706: 8694: 8692: 8691: 8686: 8684: 8683: 8665: 8663: 8662: 8657: 8622: 8619: 8615: 8614: 8598: 8593: 8575: 8574: 8549: 8547: 8546: 8541: 8529: 8527: 8526: 8521: 8509: 8507: 8506: 8501: 8486: 8484: 8483: 8478: 8463: 8461: 8460: 8455: 8453: 8452: 8433: 8431: 8430: 8425: 8423: 8422: 8397: 8395: 8394: 8389: 8359: 8356: 8325: 8324: 8321: 8316: 8315: 8300: 8299: 8281: 8280: 8255: 8253: 8252: 8247: 8235: 8233: 8232: 8227: 8225: 8224: 8208: 8206: 8205: 8200: 8164: 8162: 8161: 8156: 8150: 8149: 8131: 8130: 8111: 8106: 8094: 8093: 8081: 8080: 8055: 8053: 8052: 8047: 8028: 8026: 8025: 8020: 8015: 8014: 7999: 7998: 7993: 7992: 7984: 7973: 7961: 7960: 7951: 7950: 7943: 7938: 7923: 7915: 7909: 7898: 7879: 7877: 7876: 7871: 7866: 7865: 7848: 7843: 7833: 7828: 7813: 7805: 7799: 7788: 7769: 7767: 7766: 7761: 7753: 7732: 7730: 7729: 7724: 7713: 7712: 7693: 7691: 7690: 7685: 7683: 7682: 7658: 7656: 7655: 7650: 7648: 7647: 7631: 7630: 7615: 7614: 7609: 7608: 7600: 7589: 7577: 7576: 7567: 7566: 7559: 7554: 7539: 7531: 7526: 7525: 7509: 7508: 7492: 7491: 7486: 7485: 7477: 7466: 7454: 7453: 7444: 7443: 7436: 7431: 7412: 7401: 7382: 7380: 7379: 7374: 7372: 7371: 7355: 7354: 7338: 7333: 7323: 7318: 7303: 7295: 7290: 7289: 7273: 7272: 7256: 7251: 7241: 7236: 7217: 7206: 7187: 7185: 7184: 7179: 7158: 7156: 7155: 7150: 7138: 7136: 7135: 7130: 7128: 7127: 7111: 7110: 7094: 7089: 7061: 7059: 7058: 7053: 7051: 7050: 7034: 7032: 7031: 7026: 7021: 7020: 6998: 6996: 6995: 6990: 6985: 6984: 6959: 6957: 6956: 6951: 6949: 6944: 6940: 6939: 6923: 6915: 6914: 6869: 6866: 6863: 6860: 6857: 6854: 6851: 6848: 6845: 6842: 6839: 6836: 6833: 6830: 6827: 6824: 6821: 6818: 6815: 6812: 6809: 6806: 6803: 6800: 6797: 6794: 6791: 6788: 6785: 6782: 6779: 6776: 6773: 6770: 6767: 6764: 6761: 6758: 6755: 6752: 6749: 6746: 6743: 6740: 6737: 6734: 6731: 6728: 6725: 6722: 6719: 6716: 6713: 6710: 6707: 6704: 6701: 6698: 6695: 6692: 6689: 6686: 6683: 6680: 6677: 6674: 6671: 6668: 6665: 6662: 6659: 6656: 6653: 6650: 6647: 6644: 6641: 6638: 6635: 6632: 6629: 6626: 6623: 6620: 6617: 6614: 6611: 6608: 6605: 6602: 6599: 6596: 6593: 6590: 6587: 6584: 6581: 6578: 6575: 6572: 6569: 6566: 6563: 6560: 6557: 6554: 6551: 6548: 6545: 6542: 6539: 6536: 6533: 6530: 6527: 6524: 6521: 6518: 6515: 6512: 6509: 6506: 6503: 6500: 6497: 6494: 6491: 6488: 6485: 6482: 6472: 6470: 6469: 6464: 6459: 6441: 6439: 6438: 6433: 6431: 6427: 6422: 6421: 6420: 6404: 6399: 6397: 6396: 6387: 6386: 6385: 6376: 6375: 6362: 6357: 6355: 6354: 6345: 6326: 6325: 6298: 6297: 6287: 6282: 6281: 6261: 6248: 6243: 6242: 6241: 6225: 6220: 6218: 6217: 6208: 6176: 6174: 6173: 6161: 6160: 6140: 6127: 6122: 6111: 6109: 6108: 6096: 6095: 6075: 6062: 6054: 6039: 5994: 5992: 5991: 5986: 5959: 5957: 5956: 5951: 5949: 5939: 5936: 5931: 5922: 5921: 5920: 5907: 5902: 5901: 5889: 5886: 5883: 5876: 5873: 5869: 5860: 5851: 5850: 5849: 5840: 5835: 5832: 5827: 5826: 5814: 5811: 5808: 5794: 5792: 5791: 5786: 5784: 5783: 5774: 5766: 5745: 5743: 5742: 5737: 5735: 5734: 5715: 5713: 5712: 5707: 5705: 5701: 5699: 5698: 5689: 5688: 5687: 5672: 5671: 5659: 5658: 5643: 5642: 5632: 5621: 5618: 5613: 5604: 5603: 5602: 5586: 5581: 5569: 5568: 5552: 5547: 5537: 5535: 5534: 5519: 5514: 5510: 5507: 5502: 5493: 5492: 5488: 5486: 5481: 5469: 5468: 5459: 5458: 5445: 5440: 5426: 5425: 5416: 5415: 5405: 5403: 5402: 5390: 5384: 5383: 5365: 5364: 5346: 5345: 5326: 5324: 5323: 5314: 5313: 5312: 5297: 5296: 5284: 5283: 5268: 5267: 5257: 5246: 5243: 5238: 5229: 5225: 5224: 5212: 5211: 5199: 5198: 5189: 5188: 5178: 5176: 5175: 5163: 5157: 5156: 5138: 5137: 5119: 5118: 5065: 5061: 5057: 5056:10 + 7 5053: 5052:10 + 4 5046: 5042: 5038: 5037:10 + 7 5034: 5033:10 + 4 4999: 4996: 4993: 4990: 4987: 4984: 4981: 4978: 4975: 4972: 4969: 4966: 4963: 4960: 4957: 4954: 4951: 4948: 4945: 4942: 4939: 4936: 4933: 4930: 4927: 4924: 4921: 4918: 4915: 4912: 4909: 4906: 4903: 4900: 4897: 4894: 4891: 4888: 4885: 4882: 4879: 4876: 4873: 4870: 4867: 4864: 4861: 4858: 4855: 4852: 4849: 4842: 4840: 4839: 4834: 4832: 4830: 4829: 4817: 4816: 4815: 4810: 4809: 4801: 4797: 4796: 4784: 4783: 4778: 4777: 4769: 4765: 4764: 4754: 4749: 4748: 4740: 4739: 4731: 4720: 4718: 4717: 4712: 4704: 4703: 4687: 4685: 4684: 4679: 4677: 4676: 4671: 4670: 4662: 4655: 4654: 4649: 4648: 4640: 4623: 4621: 4620: 4615: 4613: 4612: 4600: 4599: 4576: 4574: 4573: 4568: 4566: 4562: 4560: 4559: 4547: 4546: 4545: 4536: 4535: 4525: 4520: 4519: 4507: 4506: 4488: 4487: 4465: 4464: 4442: 4440: 4439: 4427: 4426: 4417: 4406: 4405: 4400: 4399: 4391: 4380: 4379: 4371: 4370: 4362: 4354: 4353: 4348: 4347: 4339: 4332: 4331: 4326: 4325: 4317: 4299: 4298: 4286: 4285: 4269: 4268: 4242: 4240: 4239: 4234: 4222: 4220: 4219: 4214: 4188: 4185: 4182: 4179: 4176: 4173: 4170: 4167: 4164: 4161: 4158: 4155: 4152: 4149: 4146: 4143: 4140: 4137: 4134: 4131: 4128: 4125: 4122: 4119: 4116: 4113: 4110: 4107: 4104: 4101: 4098: 4095: 4092: 4089: 4086: 4083: 4080: 4077: 4074: 4071: 4068: 4065: 4062: 4059: 4056: 4053: 4050: 4047: 4044: 4041: 4038: 4035: 4032: 4029: 4026: 4023: 4020: 4017: 4014: 4011: 4008: 4005: 4002: 3999: 3996: 3993: 3990: 3987: 3984: 3981: 3978: 3975: 3972: 3969: 3966: 3963: 3960: 3957: 3954: 3951: 3948: 3945: 3942: 3939: 3936: 3933: 3930: 3927: 3924: 3921: 3918: 3915: 3912: 3909: 3906: 3903: 3866: 3863: 3860: 3857: 3854: 3851: 3848: 3845: 3842: 3839: 3836: 3833: 3830: 3827: 3824: 3821: 3818: 3815: 3812: 3809: 3806: 3803: 3800: 3797: 3794: 3791: 3788: 3785: 3782: 3779: 3776: 3773: 3770: 3767: 3764: 3761: 3758: 3755: 3752: 3749: 3746: 3743: 3740: 3737: 3734: 3731: 3728: 3725: 3722: 3719: 3716: 3713: 3710: 3707: 3704: 3701: 3698: 3695: 3692: 3689: 3686: 3683: 3680: 3677: 3674: 3671: 3668: 3665: 3662: 3659: 3656: 3653: 3650: 3647: 3644: 3641: 3638: 3635: 3632: 3629: 3626: 3623: 3620: 3617: 3614: 3611: 3608: 3605: 3602: 3599: 3596: 3593: 3590: 3587: 3584: 3581: 3578: 3575: 3572: 3569: 3566: 3563: 3560: 3557: 3554: 3551: 3548: 3545: 3535: 3533: 3532: 3527: 3525: 3524: 3506: 3505: 3489: 3487: 3486: 3481: 3479: 3478: 3473: 3472: 3464: 3457: 3456: 3437: 3435: 3434: 3429: 3427: 3423: 3421: 3410: 3409: 3394: 3384: 3379: 3366: 3361: 3360: 3345: 3335: 3330: 3314: 3313: 3308: 3307: 3299: 3292: 3291: 3276: 3275: 3264: 3263: 3255: 3248: 3247: 3232: 3231: 3203: 3202: 3173: 3171: 3170: 3165: 3163: 3162: 3140: 3138: 3137: 3132: 3130: 3129: 3120: 3119: 3114: 3113: 3105: 3098: 3097: 3084: 3079: 3050: 3048: 3047: 3042: 3027: 3025: 3013: 3008: 2993: 2988: 2983: 2982: 2981: 2972: 2971: 2960: 2959: 2951: 2944: 2943: 2930: 2924: 2919: 2901: 2896: 2895: 2894: 2885: 2884: 2873: 2872: 2864: 2857: 2856: 2843: 2837: 2832: 2816: 2814: 2803: 2792: 2786: 2781: 2762: 2760: 2759: 2754: 2749: 2744: 2742: 2737: 2716: 2715: 2710: 2709: 2701: 2694: 2693: 2678: 2677: 2666: 2665: 2657: 2650: 2649: 2636: 2630: 2625: 2607: 2602: 2598: 2597: 2592: 2591: 2583: 2576: 2575: 2560: 2559: 2548: 2547: 2539: 2532: 2531: 2515: 2510: 2478: 2472: 2467: 2448: 2446: 2445: 2440: 2438: 2433: 2432: 2431: 2420: 2419: 2411: 2404: 2403: 2393: 2388: 2387: 2376: 2375: 2367: 2360: 2355: 2354: 2353: 2341: 2340: 2329: 2328: 2320: 2299: 2294: 2293: 2288: 2287: 2279: 2261: 2259: 2258: 2253: 2251: 2250: 2245: 2241: 2240: 2239: 2234: 2226: 2220: 2219: 2203: 2198: 2183: 2181: 2167: 2161: 2156: 2136: 2134: 2133: 2128: 2126: 2125: 2120: 2116: 2115: 2114: 2109: 2101: 2095: 2094: 2078: 2073: 2058: 2050: 2044: 2039: 2023: 2021: 2020: 2015: 2010: 2009: 1991: 1990: 1967: 1965: 1964: 1959: 1957: 1956: 1946: 1941: 1926: 1918: 1913: 1912: 1907: 1899: 1868:online algorithm 1865: 1863: 1862: 1857: 1855: 1854: 1814: 1811: 1808: 1805: 1802: 1799: 1796: 1793: 1790: 1787: 1784: 1781: 1778: 1775: 1772: 1769: 1766: 1763: 1760: 1757: 1754: 1751: 1748: 1745: 1742: 1739: 1736: 1733: 1730: 1727: 1724: 1721: 1718: 1715: 1712: 1709: 1706: 1703: 1700: 1697: 1694: 1691: 1677: 1675: 1674: 1669: 1664: 1661: 1650: 1649: 1648: 1639: 1638: 1630: 1624: 1623: 1610: 1605: 1589: 1583: 1582: 1570: 1567: 1552: 1550: 1549: 1544: 1539: 1534: 1533: 1532: 1522: 1517: 1501: 1496: 1495: 1487: 1466: 1463: 1460: 1457: 1454: 1451: 1448: 1445: 1442: 1439: 1436: 1433: 1430: 1427: 1424: 1421: 1418: 1415: 1412: 1409: 1406: 1403: 1400: 1397: 1394: 1391: 1388: 1385: 1382: 1379: 1376: 1373: 1370: 1367: 1364: 1361: 1358: 1355: 1352: 1349: 1346: 1343: 1340: 1337: 1334: 1331: 1328: 1325: 1322: 1319: 1316: 1313: 1310: 1307: 1304: 1301: 1298: 1295: 1292: 1289: 1286: 1283: 1280: 1277: 1274: 1271: 1268: 1265: 1262: 1259: 1256: 1253: 1250: 1247: 1244: 1241: 1238: 1235: 1232: 1229: 1226: 1223: 1220: 1217: 1214: 1211: 1208: 1205: 1202: 1199: 1196: 1193: 1190: 1187: 1184: 1181: 1178: 1175: 1172: 1169: 1166: 1163: 1160: 1157: 1154: 1151: 1148: 1145: 1142: 1139: 1136: 1133: 1130: 1127: 1124: 1121: 1118: 1115: 1105: 1102: 1099: 1096: 1093: 1090: 1087: 1084: 1081: 1078: 1075: 1072: 1069: 1066: 1063: 1060: 1057: 1054: 1051: 1048: 1045: 1042: 1039: 1036: 1033: 1030: 1027: 1024: 1021: 1018: 1015: 1012: 1009: 1006: 1003: 1000: 997: 994: 991: 988: 985: 982: 979: 976: 973: 970: 967: 964: 961: 958: 955: 952: 949: 946: 943: 940: 937: 934: 931: 928: 925: 922: 919: 916: 913: 910: 907: 904: 893: 891: 890: 885: 869: 867: 866: 861: 850: 849: 830: 828: 827: 822: 807: 805: 804: 799: 794: 792: 781: 777: 772: 771: 753: 752: 739: 734: 713: 712: 697: 696: 683: 678: 662: 657: 656: 637: 635: 634: 629: 614: 612: 611: 606: 545:The variance is 528:can lead to the 523: 516: 495: 488: 480:SumSq ā† SumSq + 476: 468: 455: 449: 432: 430: 429: 424: 419: 417: 403: 398: 394: 393: 392: 387: 383: 378: 377: 376: 366: 361: 345: 335: 330: 328: 323: 313: 308: 292: 282: 281: 251:to calculate an 243: 241: 240: 235: 230: 225: 221: 216: 215: 206: 205: 195: 190: 168: 163: 153: 148: 132: 127: 126: 121: 120: 112: 105: 100: 96: 95: 82: 77: 76: 14521: 14520: 14516: 14515: 14514: 14512: 14511: 14510: 14491: 14490: 14468: 14463: 14432: 14425: 14390: 14386: 14369:10.2172/1028931 14357: 14353: 14343: 14341: 14330: 14326: 14318: 14305: 14301: 14262: 14258: 14243: 14239: 14224:10.2307/2286154 14208: 14204: 14188:Donald E. Knuth 14186: 14182: 14167:10.2307/1266577 14149: 14145: 14125: 14101: 14097: 14082: 14058: 14049: 14041: 14010: 13997: 13988: 13981: 13965: 13958: 13954: 13932: 13907: 13903: 13897: 13886: 13881: 13875: 13871: 13869: 13842: 13838: 13836: 13833: 13832: 13812: 13811: 13796: 13785: 13784: 13783: 13774: 13770: 13758: 13747: 13746: 13745: 13736: 13732: 13723: 13719: 13707: 13690: 13682: 13675: 13669: 13665: 13656: 13655: 13646: 13635: 13634: 13633: 13624: 13620: 13602: 13591: 13590: 13589: 13580: 13576: 13567: 13563: 13551: 13534: 13526: 13519: 13513: 13509: 13502: 13490: 13486: 13483: 13482: 13473: 13469: 13457: 13446: 13441: 13431: 13420: 13419: 13418: 13409: 13405: 13396: 13392: 13380: 13363: 13358: 13356: 13354: 13347: 13341: 13330: 13329: 13328: 13321: 13309: 13298: 13297: 13296: 13293: 13292: 13283: 13279: 13267: 13256: 13251: 13241: 13230: 13229: 13228: 13219: 13215: 13206: 13202: 13190: 13173: 13168: 13166: 13164: 13157: 13151: 13140: 13139: 13138: 13131: 13119: 13108: 13107: 13106: 13102: 13100: 13097: 13096: 13076: 13072: 13060: 13056: 13054: 13051: 13050: 13047: 13020: 13016: 13009: 13005: 12999: 12995: 12994: 12992: 12980: 12969: 12968: 12967: 12958: 12947: 12946: 12945: 12933: 12922: 12921: 12920: 12911: 12900: 12899: 12898: 12886: 12882: 12873: 12869: 12860: 12856: 12854: 12851: 12850: 12844: 12843: 12840: 12837: 12834: 12831: 12828: 12825: 12822: 12819: 12816: 12813: 12810: 12807: 12804: 12801: 12798: 12795: 12792: 12789: 12786: 12783: 12780: 12777: 12774: 12771: 12768: 12765: 12762: 12759: 12756: 12753: 12750: 12747: 12744: 12741: 12738: 12735: 12732: 12729: 12726: 12723: 12720: 12717: 12714: 12711: 12708: 12705: 12702: 12699: 12696: 12693: 12690: 12687: 12684: 12681: 12678: 12675: 12672: 12669: 12666: 12663: 12660: 12657: 12654: 12651: 12648: 12645: 12642: 12639: 12636: 12633: 12630: 12627: 12624: 12621: 12618: 12615: 12612: 12609: 12606: 12603: 12600: 12597: 12594: 12591: 12588: 12585: 12582: 12579: 12576: 12573: 12570: 12567: 12564: 12561: 12558: 12555: 12552: 12549: 12546: 12543: 12540: 12537: 12534: 12531: 12528: 12525: 12522: 12519: 12516: 12513: 12510: 12504: 12503: 12500: 12497: 12494: 12491: 12488: 12485: 12482: 12479: 12476: 12473: 12470: 12467: 12464: 12461: 12458: 12455: 12452: 12449: 12446: 12443: 12440: 12437: 12434: 12431: 12428: 12425: 12422: 12419: 12416: 12413: 12410: 12407: 12404: 12401: 12398: 12395: 12392: 12389: 12386: 12383: 12380: 12377: 12374: 12371: 12368: 12365: 12362: 12359: 12356: 12353: 12350: 12347: 12344: 12341: 12338: 12335: 12332: 12329: 12326: 12323: 12320: 12317: 12314: 12311: 12308: 12305: 12302: 12299: 12296: 12293: 12290: 12287: 12284: 12267: 12266: 12248: 12237: 12236: 12235: 12226: 12222: 12210: 12199: 12198: 12197: 12188: 12184: 12168: 12163: 12112: 12108: 12107: 12105: 12096: 12095: 12074: 12063: 12062: 12061: 12052: 12048: 12030: 12019: 12018: 12017: 12008: 12004: 11985: 11983: 11932: 11928: 11927: 11925: 11916: 11915: 11900: 11889: 11888: 11887: 11878: 11874: 11856: 11845: 11844: 11843: 11834: 11830: 11776: 11772: 11771: 11769: 11760: 11759: 11738: 11727: 11726: 11725: 11716: 11712: 11700: 11689: 11688: 11687: 11678: 11674: 11620: 11616: 11615: 11613: 11606: 11595: 11591: 11589: 11562: 11558: 11554: 11552: 11549: 11548: 11516: 11505: 11504: 11503: 11494: 11490: 11472: 11461: 11460: 11459: 11450: 11446: 11427: 11425: 11423: 11420: 11419: 11393: 11382: 11381: 11380: 11371: 11367: 11348: 11346: 11334: 11323: 11322: 11321: 11312: 11308: 11303: 11300: 11299: 11282: 11281: 11272: 11261: 11260: 11259: 11250: 11246: 11228: 11217: 11216: 11215: 11206: 11202: 11195: 11188: 11176: 11172: 11163: 11162: 11147: 11136: 11135: 11134: 11125: 11121: 11109: 11098: 11097: 11096: 11087: 11083: 11076: 11069: 11057: 11053: 11046: 11040: 11036: 11033: 11032: 11014: 11003: 11002: 11001: 10992: 10988: 10987: 10985: 10983: 10976: 10964: 10953: 10952: 10951: 10944: 10938: 10927: 10926: 10925: 10922: 10921: 10903: 10892: 10891: 10890: 10881: 10877: 10876: 10874: 10872: 10865: 10853: 10842: 10841: 10840: 10833: 10827: 10816: 10815: 10814: 10810: 10808: 10805: 10804: 10781: 10770: 10769: 10768: 10759: 10755: 10743: 10732: 10731: 10730: 10721: 10717: 10708: 10697: 10684: 10680: 10678: 10675: 10674: 10671: 10646: 10642: 10636: 10630: 10627: 10626: 10609: 10605: 10599: 10593: 10590: 10589: 10586: 10585: 10582: 10579: 10576: 10573: 10570: 10567: 10564: 10561: 10558: 10555: 10552: 10549: 10546: 10543: 10540: 10537: 10534: 10531: 10528: 10525: 10522: 10519: 10516: 10513: 10510: 10507: 10504: 10501: 10498: 10495: 10492: 10489: 10486: 10483: 10480: 10477: 10474: 10471: 10468: 10465: 10462: 10459: 10456: 10453: 10450: 10447: 10444: 10441: 10438: 10435: 10432: 10429: 10426: 10423: 10420: 10417: 10414: 10411: 10408: 10405: 10402: 10399: 10359: 10358: 10349: 10345: 10328: 10327: 10318: 10314: 10305: 10294: 10289: 10287: 10261: 10258: 10257: 10237: 10231: 10227: 10221: 10210: 10192: 10191: 10189: 10186: 10185: 10165: 10159: 10155: 10149: 10138: 10120: 10119: 10117: 10114: 10113: 10107: 10102: 10101: 10098: 10095: 10092: 10089: 10086: 10083: 10080: 10077: 10074: 10071: 10068: 10065: 10062: 10059: 10056: 10053: 10050: 10047: 10044: 10041: 10038: 10035: 10032: 10029: 10026: 10023: 10020: 10017: 10014: 10011: 10008: 10005: 10002: 9999: 9996: 9993: 9990: 9987: 9984: 9981: 9978: 9975: 9972: 9969: 9966: 9963: 9960: 9957: 9954: 9951: 9948: 9945: 9942: 9939: 9936: 9933: 9930: 9927: 9924: 9921: 9918: 9915: 9912: 9909: 9906: 9903: 9900: 9897: 9894: 9891: 9888: 9885: 9882: 9879: 9876: 9873: 9870: 9867: 9864: 9828: 9816: 9812: 9803: 9799: 9790: 9779: 9760: 9756: 9747: 9743: 9734: 9723: 9704: 9700: 9691: 9687: 9675: 9671: 9662: 9658: 9649: 9638: 9633: 9630: 9618: 9614: 9599: 9595: 9554: 9551: 9550: 9527: 9523: 9521: 9518: 9517: 9500: 9496: 9494: 9491: 9490: 9487: 9482: 9481: 9478: 9475: 9472: 9469: 9466: 9463: 9460: 9457: 9454: 9451: 9448: 9445: 9442: 9439: 9436: 9433: 9430: 9427: 9424: 9421: 9418: 9415: 9412: 9409: 9406: 9403: 9400: 9397: 9394: 9391: 9388: 9385: 9382: 9379: 9376: 9373: 9370: 9367: 9364: 9361: 9358: 9355: 9352: 9349: 9315: 9306: 9302: 9296: 9285: 9269: 9265: 9259: 9248: 9232: 9228: 9222: 9218: 9212: 9201: 9196: 9194: 9168: 9165: 9164: 9158: 9156:NaĆÆve algorithm 9146: 9116: 9111: 9095: 9091: 9089: 9074: 9070: 9061: 9056: 9040: 9036: 9034: 9019: 9015: 9002: 8998: 8989: 8984: 8967: 8963: 8954: 8950: 8948: 8945: 8944: 8918: 8914: 8884: 8880: 8878: 8875: 8874: 8857: 8853: 8851: 8848: 8847: 8801: 8786: 8782: 8770: 8766: 8764: 8749: 8745: 8743: 8740: 8739: 8720: 8717: 8716: 8700: 8697: 8696: 8679: 8676: 8674: 8671: 8670: 8618: 8604: 8600: 8594: 8583: 8564: 8560: 8558: 8555: 8554: 8535: 8532: 8531: 8515: 8512: 8511: 8495: 8492: 8491: 8469: 8466: 8465: 8445: 8441: 8439: 8436: 8435: 8412: 8408: 8406: 8403: 8402: 8357: and  8355: 8320: 8319: 8305: 8301: 8289: 8285: 8270: 8266: 8264: 8261: 8260: 8241: 8238: 8237: 8220: 8216: 8214: 8211: 8210: 8170: 8167: 8166: 8139: 8135: 8120: 8116: 8107: 8102: 8089: 8085: 8070: 8066: 8061: 8058: 8057: 8041: 8038: 8037: 8010: 8006: 7994: 7988: 7987: 7986: 7974: 7969: 7956: 7952: 7946: 7945: 7939: 7928: 7914: 7899: 7894: 7888: 7885: 7884: 7861: 7857: 7844: 7839: 7829: 7818: 7804: 7789: 7784: 7778: 7775: 7774: 7749: 7738: 7735: 7734: 7708: 7704: 7699: 7696: 7695: 7672: 7669: 7667: 7664: 7663: 7643: 7639: 7626: 7622: 7610: 7604: 7603: 7602: 7590: 7585: 7572: 7568: 7562: 7561: 7555: 7544: 7530: 7521: 7517: 7504: 7500: 7487: 7481: 7480: 7479: 7467: 7462: 7449: 7445: 7439: 7438: 7432: 7421: 7402: 7397: 7391: 7388: 7387: 7367: 7363: 7350: 7346: 7334: 7329: 7319: 7308: 7294: 7285: 7281: 7268: 7264: 7252: 7247: 7237: 7226: 7207: 7202: 7196: 7193: 7192: 7164: 7161: 7160: 7144: 7141: 7140: 7123: 7119: 7106: 7102: 7090: 7079: 7067: 7064: 7063: 7046: 7042: 7040: 7037: 7036: 7016: 7012: 7004: 7001: 7000: 6980: 6976: 6968: 6965: 6964: 6935: 6931: 6924: 6922: 6910: 6906: 6898: 6895: 6894: 6875:central moments 6871: 6870: 6867: 6864: 6861: 6858: 6855: 6852: 6849: 6846: 6843: 6840: 6837: 6834: 6831: 6828: 6825: 6822: 6819: 6816: 6813: 6810: 6807: 6804: 6801: 6798: 6795: 6792: 6789: 6786: 6783: 6780: 6777: 6774: 6771: 6768: 6765: 6762: 6759: 6756: 6753: 6750: 6747: 6744: 6741: 6738: 6735: 6732: 6729: 6726: 6723: 6720: 6717: 6714: 6711: 6708: 6705: 6702: 6699: 6696: 6693: 6690: 6687: 6684: 6681: 6678: 6675: 6672: 6669: 6666: 6663: 6660: 6657: 6654: 6651: 6648: 6645: 6642: 6639: 6636: 6633: 6630: 6627: 6624: 6621: 6618: 6615: 6612: 6609: 6606: 6603: 6600: 6597: 6594: 6591: 6588: 6585: 6582: 6579: 6576: 6573: 6570: 6567: 6564: 6561: 6558: 6555: 6552: 6549: 6546: 6543: 6540: 6537: 6534: 6531: 6528: 6525: 6522: 6519: 6516: 6513: 6510: 6507: 6504: 6501: 6498: 6495: 6492: 6489: 6486: 6484:online_kurtosis 6483: 6480: 6455: 6450: 6447: 6446: 6429: 6428: 6416: 6412: 6405: 6403: 6392: 6388: 6381: 6377: 6371: 6367: 6363: 6361: 6350: 6346: 6321: 6317: 6293: 6289: 6288: 6286: 6277: 6273: 6266: 6257: 6250: 6249: 6237: 6233: 6226: 6224: 6213: 6209: 6177: 6175: 6169: 6165: 6156: 6152: 6145: 6136: 6129: 6128: 6112: 6110: 6104: 6100: 6091: 6087: 6080: 6071: 6064: 6063: 6053: 6040: 6032: 6029: 6028: 6012: 6005: 6003: 6000: 5999: 5968: 5965: 5964: 5947: 5946: 5932: 5927: 5916: 5912: 5908: 5906: 5897: 5893: 5885: 5881: 5880: 5865: 5861: 5856: 5845: 5841: 5834: 5833: 5831: 5822: 5818: 5810: 5805: 5803: 5800: 5799: 5779: 5775: 5765: 5751: 5748: 5747: 5730: 5726: 5724: 5721: 5720: 5703: 5702: 5694: 5690: 5677: 5673: 5667: 5663: 5648: 5644: 5638: 5634: 5633: 5631: 5614: 5609: 5592: 5588: 5582: 5577: 5558: 5554: 5548: 5543: 5538: 5536: 5530: 5526: 5518: 5512: 5511: 5503: 5498: 5482: 5477: 5464: 5460: 5454: 5450: 5441: 5436: 5431: 5427: 5421: 5417: 5411: 5407: 5406: 5404: 5398: 5394: 5389: 5385: 5373: 5369: 5354: 5350: 5335: 5331: 5328: 5327: 5319: 5315: 5302: 5298: 5292: 5288: 5273: 5269: 5263: 5259: 5258: 5256: 5239: 5234: 5220: 5216: 5207: 5203: 5194: 5190: 5184: 5180: 5179: 5177: 5171: 5167: 5162: 5158: 5146: 5142: 5127: 5123: 5108: 5104: 5100: 5098: 5095: 5094: 5080:central moments 5076: 5063: 5059: 5055: 5051: 5044: 5040: 5036: 5032: 5021: 5001: 5000: 4997: 4994: 4991: 4988: 4985: 4982: 4979: 4976: 4973: 4970: 4967: 4964: 4961: 4958: 4955: 4952: 4949: 4946: 4943: 4940: 4937: 4934: 4931: 4928: 4925: 4922: 4919: 4916: 4913: 4910: 4907: 4904: 4901: 4898: 4895: 4892: 4889: 4886: 4883: 4880: 4877: 4874: 4871: 4868: 4865: 4862: 4859: 4856: 4853: 4850: 4847: 4822: 4818: 4811: 4800: 4799: 4798: 4792: 4788: 4779: 4768: 4767: 4766: 4760: 4756: 4755: 4753: 4741: 4730: 4729: 4728: 4726: 4723: 4722: 4699: 4695: 4693: 4690: 4689: 4672: 4661: 4660: 4659: 4650: 4639: 4638: 4637: 4629: 4626: 4625: 4608: 4604: 4595: 4591: 4589: 4586: 4585: 4564: 4563: 4552: 4548: 4541: 4537: 4531: 4527: 4526: 4524: 4515: 4511: 4496: 4492: 4477: 4473: 4466: 4451: 4447: 4444: 4443: 4432: 4428: 4422: 4418: 4416: 4401: 4390: 4389: 4388: 4381: 4372: 4361: 4360: 4359: 4356: 4355: 4349: 4338: 4337: 4336: 4327: 4316: 4315: 4314: 4307: 4301: 4300: 4294: 4290: 4281: 4277: 4270: 4261: 4257: 4253: 4251: 4248: 4247: 4228: 4225: 4224: 4208: 4205: 4204: 4201: 4196: 4190: 4189: 4186: 4183: 4180: 4177: 4174: 4171: 4168: 4165: 4162: 4159: 4156: 4153: 4150: 4147: 4144: 4141: 4138: 4135: 4132: 4129: 4126: 4123: 4120: 4117: 4114: 4111: 4108: 4105: 4102: 4099: 4096: 4093: 4090: 4087: 4084: 4081: 4078: 4075: 4072: 4069: 4066: 4063: 4060: 4057: 4054: 4051: 4048: 4045: 4042: 4039: 4036: 4033: 4030: 4027: 4024: 4021: 4018: 4015: 4012: 4009: 4006: 4003: 4000: 3997: 3994: 3991: 3988: 3985: 3982: 3979: 3976: 3973: 3970: 3967: 3964: 3961: 3958: 3955: 3952: 3949: 3946: 3943: 3940: 3937: 3934: 3931: 3928: 3925: 3922: 3919: 3916: 3913: 3910: 3907: 3904: 3901: 3887: 3868: 3867: 3864: 3862:sample_variance 3861: 3858: 3855: 3852: 3849: 3846: 3843: 3840: 3837: 3834: 3831: 3828: 3825: 3822: 3819: 3816: 3813: 3810: 3807: 3804: 3801: 3798: 3795: 3793:sample_variance 3792: 3789: 3786: 3783: 3780: 3777: 3774: 3771: 3768: 3766:"nan" 3765: 3762: 3759: 3756: 3753: 3750: 3747: 3744: 3741: 3738: 3735: 3732: 3729: 3726: 3723: 3720: 3717: 3714: 3711: 3708: 3705: 3702: 3699: 3696: 3693: 3690: 3687: 3684: 3681: 3678: 3675: 3672: 3669: 3666: 3663: 3660: 3657: 3654: 3651: 3648: 3645: 3642: 3639: 3636: 3633: 3630: 3627: 3624: 3621: 3618: 3615: 3612: 3609: 3606: 3603: 3600: 3597: 3594: 3591: 3588: 3585: 3582: 3579: 3576: 3573: 3570: 3567: 3564: 3561: 3558: 3555: 3552: 3549: 3546: 3543: 3514: 3510: 3501: 3497: 3495: 3492: 3491: 3474: 3463: 3462: 3461: 3452: 3448: 3446: 3443: 3442: 3425: 3424: 3411: 3399: 3395: 3393: 3386: 3380: 3375: 3368: 3367: 3350: 3346: 3344: 3337: 3331: 3326: 3319: 3318: 3309: 3298: 3297: 3296: 3287: 3283: 3265: 3254: 3253: 3252: 3243: 3239: 3215: 3211: 3204: 3192: 3188: 3184: 3182: 3179: 3178: 3152: 3148: 3146: 3143: 3142: 3141:, here denoted 3125: 3121: 3115: 3104: 3103: 3102: 3093: 3089: 3080: 3069: 3063: 3060: 3059: 3015: 3009: 2998: 2992: 2977: 2973: 2961: 2950: 2949: 2948: 2939: 2935: 2931: 2929: 2920: 2909: 2890: 2886: 2874: 2863: 2862: 2861: 2852: 2848: 2844: 2842: 2833: 2822: 2804: 2793: 2791: 2782: 2777: 2771: 2768: 2767: 2738: 2727: 2711: 2700: 2699: 2698: 2689: 2685: 2667: 2656: 2655: 2654: 2645: 2641: 2637: 2635: 2626: 2615: 2593: 2582: 2581: 2580: 2571: 2567: 2549: 2538: 2537: 2536: 2527: 2523: 2511: 2500: 2479: 2477: 2468: 2463: 2457: 2454: 2453: 2421: 2410: 2409: 2408: 2399: 2395: 2394: 2392: 2377: 2366: 2365: 2364: 2349: 2345: 2330: 2319: 2318: 2317: 2300: 2298: 2289: 2278: 2277: 2276: 2274: 2271: 2270: 2246: 2235: 2225: 2224: 2215: 2211: 2210: 2206: 2205: 2199: 2188: 2171: 2166: 2157: 2152: 2146: 2143: 2142: 2121: 2110: 2100: 2099: 2090: 2086: 2085: 2081: 2080: 2074: 2063: 2049: 2040: 2035: 2029: 2026: 2025: 2005: 2001: 1986: 1982: 1977: 1974: 1973: 1952: 1948: 1942: 1931: 1917: 1908: 1898: 1897: 1895: 1892: 1891: 1889: 1850: 1846: 1844: 1841: 1840: 1833: 1816: 1815: 1812: 1809: 1806: 1803: 1800: 1797: 1794: 1791: 1788: 1785: 1782: 1779: 1776: 1773: 1770: 1767: 1764: 1761: 1758: 1755: 1752: 1749: 1746: 1743: 1740: 1737: 1734: 1731: 1728: 1725: 1722: 1719: 1716: 1713: 1710: 1707: 1704: 1701: 1698: 1695: 1692: 1689: 1651: 1644: 1640: 1629: 1628: 1619: 1615: 1606: 1595: 1590: 1587: 1578: 1574: 1568:sample variance 1566: 1564: 1561: 1560: 1528: 1524: 1518: 1507: 1502: 1500: 1486: 1485: 1483: 1480: 1479: 1473: 1468: 1467: 1464: 1461: 1458: 1455: 1452: 1449: 1446: 1443: 1440: 1437: 1434: 1431: 1428: 1425: 1422: 1419: 1416: 1413: 1410: 1407: 1404: 1401: 1398: 1395: 1392: 1389: 1386: 1383: 1380: 1377: 1374: 1371: 1368: 1365: 1362: 1359: 1356: 1353: 1350: 1347: 1344: 1341: 1338: 1335: 1332: 1329: 1326: 1323: 1320: 1317: 1314: 1311: 1308: 1305: 1302: 1299: 1296: 1293: 1290: 1287: 1284: 1281: 1278: 1275: 1272: 1269: 1266: 1263: 1261:remove_variable 1260: 1257: 1254: 1251: 1248: 1245: 1242: 1239: 1236: 1233: 1230: 1227: 1224: 1221: 1218: 1215: 1212: 1209: 1206: 1203: 1200: 1197: 1194: 1191: 1188: 1185: 1182: 1179: 1176: 1173: 1170: 1167: 1164: 1161: 1158: 1155: 1152: 1149: 1146: 1143: 1140: 1137: 1134: 1131: 1128: 1125: 1122: 1119: 1116: 1113: 1107: 1106: 1103: 1100: 1097: 1094: 1091: 1088: 1085: 1082: 1079: 1076: 1073: 1070: 1067: 1064: 1061: 1058: 1055: 1052: 1049: 1046: 1043: 1040: 1037: 1034: 1031: 1028: 1025: 1022: 1019: 1016: 1013: 1010: 1007: 1004: 1001: 998: 995: 992: 989: 986: 983: 980: 977: 974: 971: 968: 965: 962: 959: 956: 953: 950: 947: 944: 941: 938: 935: 932: 929: 926: 923: 920: 917: 914: 911: 908: 905: 902: 879: 876: 875: 845: 841: 836: 833: 832: 816: 813: 812: 782: 773: 767: 763: 748: 744: 735: 724: 708: 704: 692: 688: 679: 668: 663: 661: 652: 648: 646: 643: 642: 623: 620: 619: 561: 558: 557: 543: 518: 514: 500: 499: 498: 493: 479: 471: 459: 453: 452:For each datum 444: 407: 402: 388: 372: 368: 362: 351: 346: 344: 340: 339: 324: 319: 309: 298: 293: 291: 290: 286: 277: 273: 271: 268: 267: 217: 211: 207: 201: 197: 191: 180: 164: 159: 149: 138: 133: 131: 122: 111: 110: 109: 91: 87: 83: 81: 72: 68: 66: 63: 62: 48: 46:NaĆÆve algorithm 17: 12: 11: 5: 14519: 14509: 14508: 14503: 14489: 14488: 14467: 14466:External links 14464: 14462: 14461: 14423: 14384: 14351: 14324: 14312:Golub, Gene H. 14299: 14278:(9): 532ā€“535. 14256: 14237: 14202: 14180: 14161:(3): 419ā€“420. 14143: 14123: 14095: 14080: 14047: 14021:(3): 242ā€“247. 14004:Golub, Gene H. 13986: 13979: 13955: 13953: 13950: 13949: 13948: 13943: 13938: 13931: 13928: 13927: 13926: 13910: 13906: 13900: 13895: 13892: 13889: 13885: 13878: 13874: 13868: 13865: 13862: 13859: 13856: 13853: 13850: 13845: 13841: 13826: 13825: 13810: 13805: 13802: 13799: 13792: 13789: 13782: 13777: 13773: 13769: 13766: 13761: 13754: 13751: 13744: 13739: 13735: 13731: 13726: 13722: 13716: 13713: 13710: 13705: 13702: 13699: 13696: 13693: 13689: 13685: 13683: 13680: 13676: 13672: 13668: 13664: 13661: 13659: 13657: 13654: 13649: 13642: 13639: 13632: 13627: 13623: 13619: 13616: 13611: 13608: 13605: 13598: 13595: 13588: 13583: 13579: 13575: 13570: 13566: 13560: 13557: 13554: 13549: 13546: 13543: 13540: 13537: 13533: 13529: 13527: 13524: 13520: 13516: 13512: 13508: 13505: 13503: 13499: 13496: 13493: 13489: 13485: 13484: 13476: 13472: 13466: 13463: 13460: 13455: 13452: 13449: 13445: 13439: 13434: 13427: 13424: 13417: 13412: 13408: 13404: 13399: 13395: 13389: 13386: 13383: 13378: 13375: 13372: 13369: 13366: 13362: 13355: 13352: 13348: 13344: 13337: 13334: 13327: 13324: 13322: 13318: 13315: 13312: 13305: 13302: 13295: 13294: 13286: 13282: 13276: 13273: 13270: 13265: 13262: 13259: 13255: 13249: 13244: 13237: 13234: 13227: 13222: 13218: 13214: 13209: 13205: 13199: 13196: 13193: 13188: 13185: 13182: 13179: 13176: 13172: 13165: 13162: 13158: 13154: 13147: 13144: 13137: 13134: 13132: 13128: 13125: 13122: 13115: 13112: 13105: 13104: 13079: 13075: 13071: 13068: 13063: 13059: 13046: 13043: 13042: 13041: 13030: 13023: 13019: 13012: 13008: 13002: 12998: 12991: 12988: 12983: 12976: 12973: 12966: 12961: 12954: 12951: 12944: 12941: 12936: 12929: 12926: 12919: 12914: 12907: 12904: 12897: 12894: 12889: 12885: 12881: 12876: 12872: 12868: 12863: 12859: 12509: 12283: 12281: 12280: 12265: 12260: 12256: 12251: 12244: 12241: 12234: 12229: 12225: 12221: 12218: 12213: 12206: 12203: 12196: 12191: 12187: 12183: 12177: 12174: 12171: 12167: 12162: 12159: 12156: 12153: 12150: 12147: 12144: 12141: 12138: 12135: 12132: 12129: 12126: 12121: 12118: 12115: 12111: 12104: 12101: 12099: 12097: 12092: 12088: 12083: 12080: 12077: 12070: 12067: 12060: 12055: 12051: 12047: 12044: 12039: 12036: 12033: 12026: 12023: 12016: 12011: 12007: 12003: 11998: 11994: 11991: 11988: 11982: 11979: 11976: 11973: 11970: 11967: 11964: 11961: 11958: 11955: 11952: 11949: 11946: 11941: 11938: 11935: 11931: 11924: 11921: 11919: 11917: 11912: 11908: 11903: 11896: 11893: 11886: 11881: 11877: 11873: 11870: 11865: 11862: 11859: 11852: 11849: 11842: 11837: 11833: 11829: 11826: 11823: 11820: 11817: 11814: 11811: 11808: 11805: 11802: 11799: 11796: 11793: 11790: 11785: 11782: 11779: 11775: 11768: 11765: 11763: 11761: 11756: 11752: 11747: 11744: 11741: 11734: 11731: 11724: 11719: 11715: 11711: 11708: 11703: 11696: 11693: 11686: 11681: 11677: 11673: 11670: 11667: 11664: 11661: 11658: 11655: 11652: 11649: 11646: 11643: 11640: 11637: 11634: 11629: 11626: 11623: 11619: 11612: 11609: 11607: 11603: 11598: 11594: 11588: 11585: 11582: 11579: 11576: 11573: 11570: 11565: 11561: 11557: 11556: 11530: 11525: 11522: 11519: 11512: 11509: 11502: 11497: 11493: 11489: 11486: 11481: 11478: 11475: 11468: 11465: 11458: 11453: 11449: 11445: 11440: 11436: 11433: 11430: 11407: 11402: 11399: 11396: 11389: 11386: 11379: 11374: 11370: 11366: 11361: 11357: 11354: 11351: 11345: 11342: 11337: 11330: 11327: 11320: 11315: 11311: 11307: 11296: 11295: 11280: 11275: 11268: 11265: 11258: 11253: 11249: 11245: 11242: 11237: 11234: 11231: 11224: 11221: 11214: 11209: 11205: 11201: 11198: 11196: 11193: 11189: 11185: 11182: 11179: 11175: 11171: 11168: 11166: 11164: 11161: 11156: 11153: 11150: 11143: 11140: 11133: 11128: 11124: 11120: 11117: 11112: 11105: 11102: 11095: 11090: 11086: 11082: 11079: 11077: 11074: 11070: 11066: 11063: 11060: 11056: 11052: 11049: 11047: 11043: 11039: 11035: 11034: 11029: 11023: 11020: 11017: 11010: 11007: 11000: 10995: 10991: 10984: 10981: 10977: 10973: 10970: 10967: 10960: 10957: 10950: 10947: 10945: 10941: 10934: 10931: 10924: 10923: 10918: 10912: 10909: 10906: 10899: 10896: 10889: 10884: 10880: 10873: 10870: 10866: 10862: 10859: 10856: 10849: 10846: 10839: 10836: 10834: 10830: 10823: 10820: 10813: 10812: 10789: 10784: 10777: 10774: 10767: 10762: 10758: 10754: 10751: 10746: 10739: 10736: 10729: 10724: 10720: 10716: 10711: 10706: 10703: 10700: 10696: 10692: 10687: 10683: 10670: 10667: 10649: 10645: 10639: 10635: 10612: 10608: 10602: 10598: 10398: 10393: 10392: 10381: 10376: 10372: 10366: 10363: 10357: 10352: 10348: 10344: 10341: 10335: 10332: 10326: 10321: 10317: 10313: 10308: 10303: 10300: 10297: 10293: 10286: 10283: 10280: 10277: 10274: 10271: 10268: 10265: 10255: 10244: 10240: 10234: 10230: 10224: 10219: 10216: 10213: 10209: 10205: 10199: 10196: 10183: 10172: 10168: 10162: 10158: 10152: 10147: 10144: 10141: 10137: 10133: 10127: 10124: 10106: 10103: 9863: 9857: 9856: 9845: 9839: 9835: 9831: 9827: 9824: 9819: 9815: 9811: 9806: 9802: 9798: 9793: 9788: 9785: 9782: 9778: 9774: 9771: 9768: 9763: 9759: 9755: 9750: 9746: 9742: 9737: 9732: 9729: 9726: 9722: 9718: 9715: 9712: 9707: 9703: 9699: 9694: 9690: 9686: 9683: 9678: 9674: 9670: 9665: 9661: 9657: 9652: 9647: 9644: 9641: 9637: 9629: 9626: 9621: 9617: 9613: 9610: 9607: 9602: 9598: 9594: 9591: 9588: 9585: 9582: 9579: 9576: 9573: 9570: 9567: 9564: 9561: 9558: 9535: 9530: 9526: 9503: 9499: 9486: 9483: 9348: 9343: 9342: 9331: 9326: 9322: 9318: 9314: 9309: 9305: 9299: 9294: 9291: 9288: 9284: 9280: 9277: 9272: 9268: 9262: 9257: 9254: 9251: 9247: 9243: 9240: 9235: 9231: 9225: 9221: 9215: 9210: 9207: 9204: 9200: 9193: 9190: 9187: 9184: 9181: 9178: 9175: 9172: 9157: 9154: 9145: 9142: 9141: 9140: 9129: 9126: 9119: 9114: 9110: 9104: 9101: 9098: 9094: 9088: 9083: 9080: 9077: 9073: 9064: 9059: 9055: 9049: 9046: 9043: 9039: 9033: 9028: 9025: 9022: 9018: 9011: 9008: 9005: 9001: 8997: 8992: 8987: 8983: 8976: 8973: 8970: 8966: 8962: 8957: 8953: 8929: 8926: 8921: 8917: 8913: 8910: 8907: 8904: 8901: 8898: 8895: 8892: 8887: 8883: 8860: 8856: 8844: 8843: 8832: 8829: 8826: 8823: 8820: 8817: 8814: 8811: 8808: 8795: 8792: 8789: 8785: 8779: 8776: 8773: 8769: 8763: 8758: 8755: 8752: 8748: 8724: 8704: 8682: 8678: 8667: 8666: 8655: 8652: 8649: 8646: 8643: 8640: 8637: 8634: 8631: 8628: 8625: 8613: 8610: 8607: 8603: 8597: 8592: 8589: 8586: 8582: 8578: 8573: 8570: 8567: 8563: 8539: 8519: 8499: 8476: 8473: 8451: 8448: 8444: 8421: 8418: 8415: 8411: 8399: 8398: 8387: 8384: 8381: 8378: 8375: 8372: 8369: 8366: 8363: 8353: 8350: 8347: 8344: 8341: 8338: 8335: 8332: 8329: 8314: 8311: 8308: 8304: 8298: 8295: 8292: 8288: 8284: 8279: 8276: 8273: 8269: 8245: 8223: 8219: 8198: 8195: 8192: 8189: 8186: 8183: 8180: 8177: 8174: 8153: 8148: 8145: 8142: 8138: 8134: 8129: 8126: 8123: 8119: 8115: 8110: 8105: 8101: 8097: 8092: 8088: 8084: 8079: 8076: 8073: 8069: 8065: 8045: 8030: 8029: 8018: 8013: 8009: 8005: 8002: 7997: 7991: 7983: 7980: 7977: 7972: 7968: 7964: 7959: 7955: 7949: 7942: 7937: 7934: 7931: 7927: 7921: 7918: 7913: 7908: 7905: 7902: 7897: 7893: 7881: 7880: 7869: 7864: 7860: 7856: 7853: 7847: 7842: 7838: 7832: 7827: 7824: 7821: 7817: 7811: 7808: 7803: 7798: 7795: 7792: 7787: 7783: 7759: 7756: 7752: 7748: 7745: 7742: 7722: 7719: 7716: 7711: 7707: 7703: 7681: 7678: 7675: 7671: 7660: 7659: 7646: 7642: 7638: 7634: 7629: 7625: 7621: 7618: 7613: 7607: 7599: 7596: 7593: 7588: 7584: 7580: 7575: 7571: 7565: 7558: 7553: 7550: 7547: 7543: 7537: 7534: 7529: 7524: 7520: 7516: 7512: 7507: 7503: 7499: 7496: 7490: 7484: 7476: 7473: 7470: 7465: 7461: 7457: 7452: 7448: 7442: 7435: 7430: 7427: 7424: 7420: 7416: 7411: 7408: 7405: 7400: 7396: 7384: 7383: 7370: 7366: 7362: 7358: 7353: 7349: 7345: 7342: 7337: 7332: 7328: 7322: 7317: 7314: 7311: 7307: 7301: 7298: 7293: 7288: 7284: 7280: 7276: 7271: 7267: 7263: 7260: 7255: 7250: 7246: 7240: 7235: 7232: 7229: 7225: 7221: 7216: 7213: 7210: 7205: 7201: 7177: 7174: 7171: 7168: 7148: 7126: 7122: 7118: 7114: 7109: 7105: 7101: 7098: 7093: 7088: 7085: 7082: 7078: 7074: 7071: 7049: 7045: 7024: 7019: 7015: 7011: 7008: 6988: 6983: 6979: 6975: 6972: 6961: 6960: 6947: 6943: 6938: 6934: 6930: 6927: 6921: 6918: 6913: 6909: 6905: 6902: 6479: 6462: 6458: 6454: 6443: 6442: 6425: 6419: 6415: 6411: 6408: 6402: 6395: 6391: 6384: 6380: 6374: 6370: 6366: 6360: 6353: 6349: 6344: 6341: 6338: 6335: 6332: 6329: 6324: 6320: 6316: 6313: 6310: 6307: 6304: 6301: 6296: 6292: 6285: 6280: 6276: 6272: 6269: 6267: 6264: 6260: 6256: 6252: 6251: 6246: 6240: 6236: 6232: 6229: 6223: 6216: 6212: 6207: 6204: 6201: 6198: 6195: 6192: 6189: 6186: 6183: 6180: 6172: 6168: 6164: 6159: 6155: 6151: 6148: 6146: 6143: 6139: 6135: 6131: 6130: 6125: 6121: 6118: 6115: 6107: 6103: 6099: 6094: 6090: 6086: 6083: 6081: 6078: 6074: 6070: 6066: 6065: 6060: 6057: 6052: 6049: 6046: 6043: 6041: 6038: 6035: 6031: 6030: 6027: 6024: 6021: 6018: 6015: 6013: 6011: 6008: 6007: 5984: 5981: 5978: 5975: 5972: 5961: 5960: 5945: 5942: 5935: 5930: 5926: 5919: 5915: 5911: 5905: 5900: 5896: 5892: 5884: 5882: 5879: 5872: 5868: 5864: 5859: 5855: 5848: 5844: 5838: 5830: 5825: 5821: 5817: 5809: 5807: 5782: 5778: 5772: 5769: 5764: 5761: 5758: 5755: 5733: 5729: 5717: 5716: 5697: 5693: 5686: 5683: 5680: 5676: 5670: 5666: 5662: 5657: 5654: 5651: 5647: 5641: 5637: 5630: 5627: 5624: 5617: 5612: 5608: 5601: 5598: 5595: 5591: 5585: 5580: 5576: 5572: 5567: 5564: 5561: 5557: 5551: 5546: 5542: 5533: 5529: 5525: 5522: 5517: 5515: 5513: 5506: 5501: 5497: 5491: 5485: 5480: 5476: 5472: 5467: 5463: 5457: 5453: 5449: 5444: 5439: 5435: 5430: 5424: 5420: 5414: 5410: 5401: 5397: 5393: 5388: 5386: 5382: 5379: 5376: 5372: 5368: 5363: 5360: 5357: 5353: 5349: 5344: 5341: 5338: 5334: 5330: 5329: 5322: 5318: 5311: 5308: 5305: 5301: 5295: 5291: 5287: 5282: 5279: 5276: 5272: 5266: 5262: 5255: 5252: 5249: 5242: 5237: 5233: 5228: 5223: 5219: 5215: 5210: 5206: 5202: 5197: 5193: 5187: 5183: 5174: 5170: 5166: 5161: 5159: 5155: 5152: 5149: 5145: 5141: 5136: 5133: 5130: 5126: 5122: 5117: 5114: 5111: 5107: 5103: 5102: 5075: 5072: 5020: 5017: 4846: 4828: 4825: 4821: 4814: 4807: 4804: 4795: 4791: 4787: 4782: 4775: 4772: 4763: 4759: 4752: 4747: 4744: 4737: 4734: 4710: 4707: 4702: 4698: 4675: 4668: 4665: 4658: 4653: 4646: 4643: 4636: 4633: 4611: 4607: 4603: 4598: 4594: 4579: 4578: 4558: 4555: 4551: 4544: 4540: 4534: 4530: 4523: 4518: 4514: 4510: 4505: 4502: 4499: 4495: 4491: 4486: 4483: 4480: 4476: 4472: 4469: 4467: 4463: 4460: 4457: 4454: 4450: 4446: 4445: 4438: 4435: 4431: 4425: 4421: 4415: 4412: 4409: 4404: 4397: 4394: 4387: 4384: 4382: 4378: 4375: 4368: 4365: 4358: 4357: 4352: 4345: 4342: 4335: 4330: 4323: 4320: 4313: 4310: 4308: 4306: 4303: 4302: 4297: 4293: 4289: 4284: 4280: 4276: 4273: 4271: 4267: 4264: 4260: 4256: 4255: 4232: 4212: 4200: 4197: 3900: 3886: 3883: 3542: 3523: 3520: 3517: 3513: 3509: 3504: 3500: 3477: 3470: 3467: 3460: 3455: 3451: 3439: 3438: 3420: 3417: 3414: 3408: 3405: 3402: 3398: 3392: 3389: 3387: 3383: 3378: 3374: 3370: 3369: 3364: 3359: 3356: 3353: 3349: 3343: 3340: 3338: 3334: 3329: 3325: 3321: 3320: 3317: 3312: 3305: 3302: 3295: 3290: 3286: 3282: 3279: 3274: 3271: 3268: 3261: 3258: 3251: 3246: 3242: 3238: 3235: 3230: 3227: 3224: 3221: 3218: 3214: 3210: 3207: 3205: 3201: 3198: 3195: 3191: 3187: 3186: 3161: 3158: 3155: 3151: 3128: 3124: 3118: 3111: 3108: 3101: 3096: 3092: 3088: 3083: 3078: 3075: 3072: 3068: 3052: 3051: 3040: 3037: 3034: 3030: 3024: 3021: 3018: 3012: 3007: 3004: 3001: 2997: 2991: 2986: 2980: 2976: 2970: 2967: 2964: 2957: 2954: 2947: 2942: 2938: 2934: 2928: 2923: 2918: 2915: 2912: 2908: 2904: 2899: 2893: 2889: 2883: 2880: 2877: 2870: 2867: 2860: 2855: 2851: 2847: 2841: 2836: 2831: 2828: 2825: 2821: 2813: 2810: 2807: 2802: 2799: 2796: 2790: 2785: 2780: 2776: 2764: 2763: 2752: 2747: 2741: 2736: 2733: 2730: 2726: 2722: 2719: 2714: 2707: 2704: 2697: 2692: 2688: 2684: 2681: 2676: 2673: 2670: 2663: 2660: 2653: 2648: 2644: 2640: 2634: 2629: 2624: 2621: 2618: 2614: 2610: 2605: 2601: 2596: 2589: 2586: 2579: 2574: 2570: 2566: 2563: 2558: 2555: 2552: 2545: 2542: 2535: 2530: 2526: 2522: 2519: 2514: 2509: 2506: 2503: 2499: 2494: 2491: 2488: 2485: 2482: 2476: 2471: 2466: 2462: 2450: 2449: 2436: 2430: 2427: 2424: 2417: 2414: 2407: 2402: 2398: 2391: 2386: 2383: 2380: 2373: 2370: 2363: 2358: 2352: 2348: 2344: 2339: 2336: 2333: 2326: 2323: 2315: 2312: 2309: 2306: 2303: 2297: 2292: 2285: 2282: 2249: 2244: 2238: 2232: 2229: 2223: 2218: 2214: 2209: 2202: 2197: 2194: 2191: 2187: 2180: 2177: 2174: 2170: 2165: 2160: 2155: 2151: 2124: 2119: 2113: 2107: 2104: 2098: 2093: 2089: 2084: 2077: 2072: 2069: 2066: 2062: 2056: 2053: 2048: 2043: 2038: 2034: 2013: 2008: 2004: 2000: 1997: 1994: 1989: 1985: 1981: 1955: 1951: 1945: 1940: 1937: 1934: 1930: 1924: 1921: 1916: 1911: 1905: 1902: 1885: 1853: 1849: 1832: 1829: 1688: 1679: 1678: 1667: 1660: 1657: 1654: 1647: 1643: 1636: 1633: 1627: 1622: 1618: 1614: 1609: 1604: 1601: 1598: 1594: 1586: 1581: 1577: 1573: 1554: 1553: 1542: 1537: 1531: 1527: 1521: 1516: 1513: 1510: 1506: 1499: 1493: 1490: 1472: 1469: 1112: 901: 883: 859: 856: 853: 848: 844: 840: 820: 809: 808: 797: 791: 788: 785: 780: 776: 770: 766: 762: 759: 756: 751: 747: 743: 738: 733: 730: 727: 723: 719: 716: 711: 707: 703: 700: 695: 691: 687: 682: 677: 674: 671: 667: 660: 655: 651: 627: 616: 615: 604: 601: 598: 595: 592: 589: 586: 583: 580: 577: 574: 571: 568: 565: 542: 539: 497: 496: 491: 490: 489: 477: 469: 450: 440: 439: 438: 434: 433: 422: 416: 413: 410: 406: 401: 397: 391: 386: 381: 375: 371: 365: 360: 357: 354: 350: 343: 338: 333: 327: 322: 318: 312: 307: 304: 301: 297: 289: 285: 280: 276: 245: 244: 233: 228: 224: 220: 214: 210: 204: 200: 194: 189: 186: 183: 179: 175: 172: 167: 162: 158: 152: 147: 144: 141: 137: 130: 125: 118: 115: 108: 103: 99: 94: 90: 86: 80: 75: 71: 47: 44: 38:as well as to 15: 9: 6: 4: 3: 2: 14518: 14507: 14504: 14502: 14499: 14498: 14496: 14484: 14483: 14478: 14475: 14470: 14469: 14457: 14453: 14449: 14445: 14441: 14437: 14430: 14428: 14419: 14415: 14411: 14407: 14403: 14399: 14395: 14388: 14379: 14374: 14370: 14366: 14362: 14355: 14339: 14335: 14328: 14317: 14313: 14309: 14308:Chan, Tony F. 14303: 14295: 14291: 14286: 14281: 14277: 14273: 14272: 14267: 14260: 14252: 14248: 14241: 14233: 14229: 14225: 14221: 14217: 14213: 14206: 14199: 14195: 14194: 14189: 14184: 14176: 14172: 14168: 14164: 14160: 14156: 14155: 14154:Technometrics 14147: 14140: 14135:, 2002075848. 14134: 14130: 14126: 14120: 14116: 14112: 14108: 14107: 14099: 14091: 14087: 14083: 14081:9781450365055 14077: 14073: 14069: 14065: 14064: 14056: 14054: 14052: 14040: 14036: 14032: 14028: 14024: 14020: 14016: 14009: 14005: 14001: 14000:Chan, Tony F. 13995: 13993: 13991: 13982: 13976: 13972: 13971: 13963: 13961: 13956: 13947: 13944: 13942: 13939: 13937: 13934: 13933: 13908: 13904: 13898: 13893: 13890: 13887: 13883: 13876: 13872: 13866: 13860: 13857: 13854: 13848: 13843: 13839: 13831: 13830: 13829: 13803: 13800: 13797: 13787: 13780: 13775: 13771: 13759: 13749: 13742: 13737: 13733: 13724: 13720: 13714: 13711: 13708: 13703: 13700: 13697: 13694: 13691: 13687: 13684: 13678: 13670: 13666: 13662: 13660: 13647: 13637: 13630: 13625: 13621: 13609: 13606: 13603: 13593: 13586: 13581: 13577: 13568: 13564: 13558: 13555: 13552: 13547: 13544: 13541: 13538: 13535: 13531: 13528: 13522: 13514: 13510: 13506: 13504: 13497: 13494: 13491: 13487: 13474: 13470: 13464: 13461: 13458: 13453: 13450: 13447: 13443: 13432: 13422: 13415: 13410: 13406: 13397: 13393: 13387: 13384: 13381: 13376: 13373: 13370: 13367: 13364: 13360: 13350: 13342: 13332: 13325: 13323: 13316: 13313: 13310: 13300: 13284: 13280: 13274: 13271: 13268: 13263: 13260: 13257: 13253: 13242: 13232: 13225: 13220: 13216: 13207: 13203: 13197: 13194: 13191: 13186: 13183: 13180: 13177: 13174: 13170: 13160: 13152: 13142: 13135: 13133: 13126: 13123: 13120: 13110: 13095: 13094: 13093: 13077: 13073: 13069: 13066: 13061: 13057: 13028: 13021: 13017: 13010: 13006: 13000: 12996: 12989: 12981: 12971: 12964: 12959: 12949: 12934: 12924: 12917: 12912: 12902: 12892: 12887: 12883: 12879: 12874: 12870: 12866: 12861: 12857: 12849: 12848: 12847: 12507: 12263: 12258: 12249: 12239: 12232: 12227: 12223: 12211: 12201: 12194: 12189: 12185: 12175: 12172: 12169: 12165: 12160: 12154: 12151: 12148: 12142: 12136: 12133: 12130: 12124: 12119: 12116: 12113: 12109: 12102: 12100: 12090: 12081: 12078: 12075: 12065: 12058: 12053: 12049: 12037: 12034: 12031: 12021: 12014: 12009: 12005: 11996: 11992: 11989: 11986: 11980: 11974: 11971: 11968: 11962: 11956: 11953: 11950: 11944: 11939: 11936: 11933: 11929: 11922: 11920: 11910: 11901: 11891: 11884: 11879: 11875: 11863: 11860: 11857: 11847: 11840: 11835: 11831: 11824: 11818: 11815: 11812: 11806: 11800: 11797: 11794: 11788: 11783: 11780: 11777: 11773: 11766: 11764: 11754: 11745: 11742: 11739: 11729: 11722: 11717: 11713: 11701: 11691: 11684: 11679: 11675: 11668: 11662: 11659: 11656: 11650: 11644: 11641: 11638: 11632: 11627: 11624: 11621: 11617: 11610: 11608: 11601: 11596: 11592: 11586: 11580: 11577: 11574: 11568: 11563: 11559: 11547: 11546: 11545: 11542: 11523: 11520: 11517: 11507: 11500: 11495: 11491: 11479: 11476: 11473: 11463: 11456: 11451: 11447: 11438: 11434: 11431: 11428: 11400: 11397: 11394: 11384: 11377: 11372: 11368: 11359: 11355: 11352: 11349: 11343: 11335: 11325: 11318: 11313: 11309: 11273: 11263: 11256: 11251: 11247: 11235: 11232: 11229: 11219: 11212: 11207: 11203: 11197: 11191: 11183: 11180: 11177: 11173: 11169: 11167: 11154: 11151: 11148: 11138: 11131: 11126: 11122: 11110: 11100: 11093: 11088: 11084: 11078: 11072: 11064: 11061: 11058: 11054: 11050: 11048: 11041: 11037: 11027: 11021: 11018: 11015: 11005: 10998: 10993: 10989: 10979: 10971: 10968: 10965: 10955: 10948: 10946: 10939: 10929: 10916: 10910: 10907: 10904: 10894: 10887: 10882: 10878: 10868: 10860: 10857: 10854: 10844: 10837: 10835: 10828: 10818: 10803: 10802: 10801: 10782: 10772: 10765: 10760: 10756: 10744: 10734: 10727: 10722: 10718: 10709: 10704: 10701: 10698: 10694: 10690: 10685: 10681: 10666: 10664: 10647: 10643: 10637: 10633: 10610: 10606: 10600: 10596: 10396: 10379: 10374: 10361: 10355: 10350: 10346: 10330: 10324: 10319: 10315: 10306: 10301: 10298: 10295: 10291: 10284: 10278: 10275: 10272: 10266: 10263: 10256: 10242: 10238: 10232: 10228: 10222: 10217: 10214: 10211: 10207: 10203: 10194: 10184: 10170: 10166: 10160: 10156: 10150: 10145: 10142: 10139: 10135: 10131: 10122: 10112: 10111: 10110: 9861: 9843: 9837: 9833: 9829: 9817: 9813: 9809: 9804: 9800: 9791: 9786: 9783: 9780: 9776: 9761: 9757: 9753: 9748: 9744: 9735: 9730: 9727: 9724: 9720: 9713: 9705: 9701: 9697: 9692: 9688: 9676: 9672: 9668: 9663: 9659: 9650: 9645: 9642: 9639: 9635: 9627: 9619: 9615: 9611: 9608: 9605: 9600: 9596: 9592: 9589: 9583: 9580: 9577: 9571: 9568: 9565: 9559: 9556: 9549: 9548: 9547: 9533: 9528: 9524: 9501: 9497: 9346: 9329: 9324: 9320: 9316: 9307: 9303: 9297: 9292: 9289: 9286: 9282: 9270: 9266: 9260: 9255: 9252: 9249: 9245: 9238: 9233: 9229: 9223: 9219: 9213: 9208: 9205: 9202: 9198: 9191: 9185: 9182: 9179: 9173: 9170: 9163: 9162: 9161: 9153: 9151: 9127: 9124: 9117: 9112: 9108: 9102: 9099: 9096: 9092: 9086: 9081: 9078: 9075: 9071: 9062: 9057: 9053: 9047: 9044: 9041: 9037: 9031: 9026: 9023: 9020: 9016: 9009: 9006: 9003: 8999: 8995: 8990: 8985: 8981: 8974: 8971: 8968: 8964: 8960: 8955: 8951: 8943: 8942: 8941: 8919: 8911: 8908: 8905: 8896: 8890: 8885: 8881: 8858: 8854: 8830: 8827: 8824: 8821: 8818: 8815: 8812: 8809: 8806: 8793: 8790: 8787: 8783: 8777: 8774: 8771: 8767: 8761: 8756: 8753: 8750: 8746: 8738: 8737: 8736: 8722: 8702: 8680: 8677: 8653: 8650: 8647: 8644: 8641: 8638: 8635: 8632: 8629: 8626: 8623: 8611: 8608: 8605: 8601: 8595: 8590: 8587: 8584: 8580: 8576: 8571: 8568: 8565: 8561: 8553: 8552: 8551: 8537: 8517: 8497: 8488: 8487:is constant. 8474: 8449: 8446: 8442: 8419: 8416: 8413: 8409: 8385: 8382: 8379: 8376: 8373: 8370: 8367: 8364: 8361: 8351: 8348: 8345: 8342: 8339: 8336: 8333: 8330: 8327: 8312: 8309: 8306: 8302: 8296: 8293: 8290: 8286: 8282: 8277: 8274: 8271: 8267: 8259: 8258: 8257: 8256:raw moments: 8243: 8221: 8217: 8196: 8193: 8190: 8187: 8184: 8181: 8178: 8175: 8172: 8146: 8143: 8140: 8136: 8132: 8127: 8124: 8121: 8117: 8113: 8108: 8103: 8099: 8095: 8090: 8086: 8082: 8077: 8074: 8071: 8067: 8043: 8034: 8011: 8007: 8000: 7995: 7978: 7970: 7966: 7962: 7957: 7953: 7940: 7935: 7932: 7929: 7925: 7919: 7916: 7911: 7903: 7895: 7891: 7883: 7882: 7862: 7858: 7851: 7845: 7840: 7836: 7830: 7825: 7822: 7819: 7815: 7809: 7806: 7801: 7793: 7785: 7781: 7773: 7772: 7771: 7757: 7750: 7746: 7743: 7740: 7720: 7714: 7709: 7705: 7676: 7670: 7644: 7640: 7627: 7623: 7616: 7611: 7594: 7586: 7582: 7578: 7573: 7569: 7556: 7551: 7548: 7545: 7541: 7535: 7532: 7527: 7522: 7518: 7505: 7501: 7494: 7488: 7471: 7463: 7459: 7455: 7450: 7446: 7433: 7428: 7425: 7422: 7418: 7414: 7406: 7398: 7394: 7386: 7385: 7368: 7364: 7351: 7347: 7340: 7335: 7330: 7326: 7320: 7315: 7312: 7309: 7305: 7299: 7296: 7291: 7286: 7282: 7269: 7265: 7258: 7253: 7248: 7244: 7238: 7233: 7230: 7227: 7223: 7219: 7211: 7203: 7199: 7191: 7190: 7189: 7172: 7166: 7146: 7124: 7120: 7107: 7103: 7096: 7091: 7086: 7083: 7080: 7076: 7072: 7069: 7047: 7043: 7017: 7013: 7006: 6981: 6977: 6970: 6945: 6936: 6932: 6925: 6919: 6911: 6907: 6900: 6893: 6892: 6891: 6888: 6882: 6880: 6876: 6477: 6474: 6460: 6456: 6452: 6423: 6417: 6413: 6409: 6406: 6400: 6393: 6389: 6382: 6378: 6372: 6368: 6364: 6358: 6351: 6347: 6339: 6336: 6333: 6330: 6327: 6322: 6318: 6308: 6305: 6302: 6294: 6290: 6283: 6278: 6274: 6270: 6268: 6262: 6258: 6254: 6244: 6238: 6234: 6230: 6227: 6221: 6214: 6210: 6202: 6199: 6196: 6187: 6184: 6181: 6170: 6166: 6162: 6157: 6153: 6149: 6147: 6141: 6137: 6133: 6123: 6119: 6116: 6113: 6105: 6101: 6097: 6092: 6088: 6084: 6082: 6076: 6072: 6068: 6058: 6055: 6050: 6047: 6044: 6042: 6036: 6033: 6025: 6022: 6019: 6016: 6014: 6009: 5998: 5997: 5996: 5979: 5973: 5970: 5943: 5940: 5933: 5928: 5924: 5917: 5913: 5909: 5903: 5898: 5894: 5890: 5877: 5870: 5866: 5862: 5857: 5853: 5846: 5842: 5836: 5828: 5823: 5819: 5815: 5798: 5797: 5796: 5780: 5767: 5762: 5759: 5753: 5731: 5727: 5695: 5691: 5684: 5681: 5678: 5674: 5668: 5664: 5660: 5655: 5652: 5649: 5645: 5639: 5635: 5628: 5625: 5622: 5615: 5610: 5606: 5599: 5596: 5593: 5589: 5583: 5578: 5574: 5570: 5565: 5562: 5559: 5555: 5549: 5544: 5540: 5531: 5527: 5523: 5520: 5516: 5504: 5499: 5495: 5489: 5483: 5478: 5474: 5470: 5465: 5461: 5455: 5451: 5447: 5442: 5437: 5433: 5428: 5422: 5418: 5412: 5408: 5399: 5395: 5391: 5387: 5380: 5377: 5374: 5370: 5366: 5361: 5358: 5355: 5351: 5347: 5342: 5339: 5336: 5332: 5320: 5316: 5309: 5306: 5303: 5299: 5293: 5289: 5285: 5280: 5277: 5274: 5270: 5264: 5260: 5253: 5250: 5247: 5240: 5235: 5231: 5221: 5217: 5213: 5208: 5204: 5195: 5191: 5185: 5181: 5172: 5168: 5164: 5160: 5153: 5150: 5147: 5143: 5139: 5134: 5131: 5128: 5124: 5120: 5115: 5112: 5109: 5105: 5093: 5092: 5091: 5089: 5085: 5081: 5071: 5069: 5048: 5029: 5026: 5016: 5014: 5010: 5006: 4844: 4826: 4823: 4819: 4812: 4802: 4793: 4789: 4785: 4780: 4770: 4761: 4757: 4750: 4745: 4742: 4732: 4708: 4705: 4700: 4696: 4673: 4663: 4656: 4651: 4641: 4634: 4631: 4609: 4605: 4601: 4596: 4592: 4582: 4556: 4553: 4549: 4542: 4538: 4532: 4528: 4521: 4516: 4512: 4508: 4503: 4500: 4497: 4493: 4489: 4484: 4481: 4478: 4474: 4470: 4468: 4461: 4458: 4455: 4452: 4448: 4436: 4433: 4429: 4423: 4419: 4413: 4410: 4407: 4402: 4392: 4385: 4383: 4376: 4373: 4363: 4350: 4340: 4333: 4328: 4318: 4311: 4309: 4304: 4295: 4291: 4287: 4282: 4278: 4274: 4272: 4265: 4262: 4258: 4246: 4245: 4244: 4230: 4210: 4195: 3898: 3896: 3892: 3882: 3880: 3875: 3873: 3540: 3537: 3521: 3518: 3515: 3511: 3507: 3502: 3498: 3475: 3465: 3458: 3453: 3449: 3418: 3415: 3412: 3406: 3403: 3400: 3396: 3390: 3388: 3381: 3376: 3372: 3362: 3357: 3354: 3351: 3347: 3341: 3339: 3332: 3327: 3323: 3310: 3300: 3293: 3288: 3284: 3272: 3269: 3266: 3256: 3249: 3244: 3240: 3233: 3228: 3225: 3222: 3219: 3216: 3212: 3208: 3206: 3199: 3196: 3193: 3189: 3177: 3176: 3175: 3159: 3156: 3153: 3149: 3126: 3116: 3106: 3099: 3094: 3090: 3081: 3076: 3073: 3070: 3066: 3057: 3038: 3035: 3032: 3028: 3022: 3019: 3016: 3010: 3005: 3002: 2999: 2995: 2989: 2984: 2978: 2968: 2965: 2962: 2952: 2945: 2940: 2936: 2926: 2921: 2916: 2913: 2910: 2906: 2902: 2897: 2891: 2881: 2878: 2875: 2865: 2858: 2853: 2849: 2839: 2834: 2829: 2826: 2823: 2819: 2811: 2808: 2805: 2800: 2797: 2794: 2788: 2783: 2778: 2774: 2766: 2765: 2750: 2745: 2739: 2734: 2731: 2728: 2724: 2720: 2712: 2702: 2695: 2690: 2686: 2674: 2671: 2668: 2658: 2651: 2646: 2642: 2632: 2627: 2622: 2619: 2616: 2612: 2608: 2603: 2594: 2584: 2577: 2572: 2568: 2556: 2553: 2550: 2540: 2533: 2528: 2524: 2517: 2512: 2507: 2504: 2501: 2497: 2489: 2486: 2483: 2474: 2469: 2464: 2460: 2452: 2451: 2434: 2428: 2425: 2422: 2412: 2405: 2400: 2396: 2389: 2384: 2381: 2378: 2368: 2361: 2356: 2350: 2346: 2342: 2337: 2334: 2331: 2321: 2310: 2307: 2304: 2295: 2290: 2280: 2269: 2268: 2267: 2265: 2247: 2242: 2236: 2227: 2221: 2216: 2212: 2207: 2200: 2195: 2192: 2189: 2185: 2178: 2175: 2172: 2168: 2163: 2158: 2153: 2149: 2140: 2122: 2117: 2111: 2102: 2096: 2091: 2087: 2082: 2075: 2070: 2067: 2064: 2060: 2054: 2051: 2046: 2041: 2036: 2032: 2006: 2002: 1998: 1995: 1992: 1987: 1983: 1971: 1953: 1949: 1943: 1938: 1935: 1932: 1928: 1922: 1919: 1914: 1909: 1900: 1888: 1884: 1880: 1875: 1873: 1869: 1851: 1847: 1838: 1828: 1826: 1821: 1686: 1684: 1665: 1658: 1655: 1652: 1645: 1631: 1625: 1620: 1616: 1607: 1602: 1599: 1596: 1592: 1584: 1579: 1575: 1571: 1559: 1558: 1557: 1540: 1535: 1529: 1525: 1519: 1514: 1511: 1508: 1504: 1497: 1488: 1478: 1477: 1476: 1110: 899: 897: 881: 872: 854: 851: 846: 842: 818: 795: 789: 786: 783: 778: 774: 768: 757: 754: 749: 745: 736: 731: 728: 725: 721: 714: 709: 701: 698: 693: 689: 680: 675: 672: 669: 665: 658: 653: 649: 641: 640: 639: 625: 602: 596: 590: 587: 584: 578: 575: 572: 566: 563: 556: 555: 554: 552: 548: 538: 535: 531: 527: 522: 511: 509: 505: 492: 487: 483: 478: 475: 470: 466: 462: 458: 457: 451: 447: 442: 441: 437: 420: 414: 411: 408: 404: 399: 395: 389: 384: 379: 373: 369: 363: 358: 355: 352: 348: 341: 336: 331: 325: 320: 316: 310: 305: 302: 299: 295: 287: 283: 278: 274: 266: 265: 264: 262: 258: 254: 250: 231: 226: 222: 218: 212: 202: 198: 192: 187: 184: 181: 177: 170: 165: 160: 156: 150: 145: 142: 139: 135: 128: 123: 113: 106: 92: 88: 78: 73: 69: 61: 60: 59: 57: 53: 43: 41: 37: 33: 29: 25: 21: 14480: 14442:(1): 13ā€“24. 14439: 14435: 14401: 14397: 14387: 14354: 14342:. Retrieved 14338:the original 14327: 14302: 14275: 14269: 14259: 14250: 14240: 14215: 14211: 14205: 14197: 14196:, volume 2: 14191: 14183: 14158: 14152: 14146: 14105: 14098: 14062: 14018: 14014: 13969: 13827: 13048: 12845: 12505: 12477:sample_covar 11543: 11297: 10672: 10662: 10587: 10394: 10108: 9858: 9488: 9344: 9159: 9147: 8845: 8668: 8510:is that the 8489: 8400: 8209:, then each 8035: 8031: 7661: 6962: 6883: 6872: 6475: 6444: 5962: 5718: 5077: 5049: 5030: 5022: 5002: 4583: 4580: 4202: 3890: 3888: 3876: 3869: 3538: 3440: 3055: 3053: 1969: 1886: 1882: 1876: 1834: 1819: 1817: 1682: 1680: 1555: 1474: 1396:get_variance 1147:add_variable 1108: 873: 810: 617: 544: 526:cancellation 520: 512: 507: 503: 501: 485: 481: 473: 472:Sum ā† Sum + 464: 460: 445: 435: 260: 246: 55: 49: 19: 18: 1837:single pass 811:the closer 506:instead of 14495:Categories 13952:References 10583:covariance 10559:covariance 10487:covariance 9479:covariance 9437:covariance 9150:covariance 9144:Covariance 6879:covariance 519:(SumƗSum)/ 52:population 28:algorithms 14482:MathWorld 14418:124570169 13884:∑ 13849:⁡ 13791:¯ 13781:− 13753:¯ 13743:− 13688:∑ 13641:¯ 13631:− 13597:¯ 13587:− 13532:∑ 13444:∑ 13426:¯ 13416:− 13361:∑ 13336:¯ 13304:¯ 13254:∑ 13236:¯ 13226:− 13171:∑ 13146:¯ 13114:¯ 13070:… 12990:⋅ 12975:¯ 12965:− 12953:¯ 12928:¯ 12918:− 12906:¯ 12243:¯ 12233:− 12205:¯ 12195:− 12173:− 12152:− 12143:⋅ 12125:⁡ 12117:− 12079:− 12069:¯ 12059:− 12035:− 12025:¯ 12015:− 11990:− 11972:− 11963:⋅ 11945:⁡ 11937:− 11895:¯ 11885:− 11861:− 11851:¯ 11841:− 11816:− 11807:⋅ 11789:⁡ 11781:− 11743:− 11733:¯ 11723:− 11695:¯ 11685:− 11660:− 11651:⋅ 11633:⁡ 11625:− 11569:⁡ 11521:− 11511:¯ 11501:− 11477:− 11467:¯ 11457:− 11432:− 11398:− 11388:¯ 11378:− 11353:− 11329:¯ 11319:− 11267:¯ 11257:− 11233:− 11223:¯ 11213:− 11181:− 11152:− 11142:¯ 11132:− 11104:¯ 11094:− 11062:− 11019:− 11009:¯ 10999:− 10969:− 10959:¯ 10933:¯ 10908:− 10898:¯ 10888:− 10858:− 10848:¯ 10822:¯ 10776:¯ 10766:− 10738:¯ 10728:− 10695:∑ 10634:∑ 10597:∑ 10365:¯ 10356:− 10334:¯ 10325:− 10292:∑ 10267:⁡ 10208:∑ 10198:¯ 10136:∑ 10126:¯ 9810:− 9777:∑ 9754:− 9721:∑ 9714:− 9698:− 9669:− 9636:∑ 9612:− 9593:− 9584:⁡ 9560:⁡ 9283:∑ 9246:∑ 9239:− 9199:∑ 9174:⁡ 9125:− 9109:σ 9093:θ 9072:α 9054:σ 9038:θ 9017:α 9000:θ 8982:σ 8952:μ 8912:μ 8909:− 8897:⁡ 8882:θ 8803:for  8784:γ 8768:γ 8723:γ 8703:γ 8620:for  8602:γ 8581:∑ 8562:γ 8498:γ 8472:Δ 8410:γ 8380:… 8303:γ 8268:γ 8218:γ 8191:… 8137:α 8118:α 8100:σ 8087:μ 8068:γ 7963:− 7926:∑ 7892:θ 7816:∑ 7755:Δ 7718:Δ 7702:Δ 7637:Δ 7579:− 7542:∑ 7515:Δ 7456:− 7419:∑ 7395:θ 7361:Δ 7306:∑ 7279:Δ 7224:∑ 7117:Δ 7077:∑ 6453:δ 6410:δ 6401:− 6369:δ 6328:− 6306:− 6291:δ 6231:δ 6222:− 6200:− 6185:− 6167:δ 6117:− 6102:δ 6056:δ 6023:− 6010:δ 5941:− 5795:, giving 5771:¯ 5763:− 5754:∑ 5719:Here the 5661:− 5629:δ 5528:δ 5448:− 5396:δ 5286:− 5254:δ 5214:− 5169:δ 4806:¯ 4774:¯ 4736:¯ 4667:¯ 4657:− 4645:¯ 4632:δ 4602:≈ 4522:⋅ 4513:δ 4414:⋅ 4411:δ 4396:¯ 4367:¯ 4344:¯ 4334:− 4322:¯ 4305:δ 3649:new_value 3619:new_value 3571:new_value 3469:¯ 3416:− 3324:σ 3304:¯ 3294:− 3270:− 3260:¯ 3250:− 3226:− 3110:¯ 3100:− 3067:∑ 3020:− 3003:− 2990:− 2966:− 2956:¯ 2946:− 2914:− 2879:− 2869:¯ 2859:− 2827:− 2809:− 2798:− 2732:− 2725:σ 2721:− 2706:¯ 2696:− 2672:− 2662:¯ 2652:− 2620:− 2613:σ 2588:¯ 2578:− 2554:− 2544:¯ 2534:− 2505:− 2498:σ 2487:− 2461:σ 2426:− 2416:¯ 2406:− 2382:− 2372:¯ 2335:− 2325:¯ 2308:− 2284:¯ 2231:¯ 2222:− 2186:∑ 2176:− 2106:¯ 2097:− 2061:∑ 2033:σ 1996:… 1929:∑ 1904:¯ 1656:− 1635:¯ 1626:− 1593:∑ 1505:∑ 1492:¯ 852:− 787:− 755:− 722:∑ 715:− 699:− 666:∑ 650:σ 591:⁡ 576:− 567:⁡ 547:invariant 530:precision 412:− 400:⋅ 349:∑ 337:− 296:∑ 178:∑ 171:− 136:∑ 117:¯ 107:− 102:¯ 70:σ 14456:17534100 14294:30671293 14190:(1998). 14090:49665540 14039:Archived 13930:See also 10105:Two-pass 6868:kurtosis 6820:kurtosis 6715:delta_n2 6667:delta_n2 6598:delta_n2 6263:′ 6142:′ 6077:′ 6037:′ 5887:kurtosis 5812:skewness 5088:kurtosis 5084:skewness 4082:mean_old 4049:mean_old 4016:mean_old 4001:mean_old 3856:variance 3787:variance 3703:finalize 1972:samples 1890:. Here, 1813:variance 1747:variance 1351:get_mean 1104:variance 1044:variance 513:Because 253:unbiased 54:of size 32:variance 14378:1028931 14232:2286154 14175:1266577 14035:2683386 6790:delta_n 6760:delta_n 6733:delta_n 6646:delta_n 6625:delta_n 6604:delta_n 6583:delta_n 5019:Example 5007:, with 14454:  14416:  14375:  14292:  14230:  14173:  14131:  14121:  14088:  14078:  14033:  13977:  10669:Online 10663:should 10580:return 10066:return 9991:data_y 9985:data_x 9940:data_y 9931:data_x 9919:return 9898:data_x 9880:data_y 9874:data_x 9476:return 8401:where 6963:where 6865:return 5011:, and 4998:var_ab 4995:return 4968:var_ab 4178:w_sum2 3986:w_sum2 3980:w_sum2 3923:w_sum2 3844:return 3757:return 3673:return 3670:delta2 3643:delta2 3559:update 2262:their 2141:, and 2137:their 1810:return 1681:where 1420:return 1402:global 1375:return 1357:global 1273:global 1159:global 1101:return 942:return 257:sample 247:Using 14452:S2CID 14414:S2CID 14344:5 May 14319:(PDF) 14290:S2CID 14228:JSTOR 14171:JSTOR 14086:S2CID 14042:(PDF) 14031:JSTOR 14011:(PDF) 12832:wsum2 12754:meany 12721:meany 12688:meany 12661:meanx 12658:meanx 12631:wsum2 12616:data3 12610:data2 12604:data1 12559:wsum2 12544:meany 12538:meanx 12532:data3 12526:data2 12520:data1 12453:meany 12420:meany 12405:meany 12390:meanx 12387:meanx 12360:data2 12354:data1 12312:meany 12306:meanx 12300:data2 12294:data1 10556:mean2 10541:mean1 10523:data2 10517:data1 10475:data2 10463:mean2 10451:data1 10439:mean1 10433:data1 10415:data2 10409:data1 9446:sum12 9425:sum12 9419:data2 9401:data1 9383:data1 9365:data2 9359:data1 6811:term1 6754:term1 6661:term1 6619:delta 6613:term1 6589:delta 6568:delta 4941:delta 4920:avg_a 4914:avg_b 4908:delta 4881:avg_b 4863:avg_a 4184:w_sum 4172:w_sum 4142:w_sum 4118:w_sum 4031:w_sum 3971:w_sum 3965:w_sum 3917:w_sum 3832:count 3817:count 3760:float 3745:count 3718:count 3679:count 3664:delta 3640:count 3634:delta 3613:delta 3604:count 3580:count 618:with 515:SumSq 14373:OSTI 14346:2008 14129:ISBN 14119:ISBN 14076:ISBN 13975:ISBN 12838:wsum 12826:wsum 12796:wsum 12772:wsum 12703:wsum 12676:wsum 12622:wsum 12553:wsum 10625:and 9910:< 9516:and 9458:sum2 9452:sum1 9407:sum2 9389:sum1 9152:. 8165:for 7062:and 6999:and 6640:mean 6634:mean 6580:mean 6538:data 6502:mean 6490:data 5086:and 5009:GPUs 4935:M2_b 4929:M2_a 4887:M2_b 4869:M2_a 4223:and 4100:mean 4010:mean 4007:mean 3929:mean 3877:The 3850:mean 3805:mean 3781:mean 3772:else 3748:< 3724:mean 3685:mean 3655:mean 3628:mean 3625:mean 3586:mean 3490:and 3036:> 1879:mean 1870:, a 1786:data 1765:mean 1735:data 1723:mean 1717:data 1699:data 987:data 954:data 933:< 927:data 912:data 517:and 443:Let 58:is: 14444:doi 14406:doi 14365:doi 14280:doi 14220:doi 14163:doi 14127:. e 14111:doi 14068:doi 14023:doi 13840:Cov 12598:zip 12577:for 12511:def 12348:zip 12333:for 12285:def 12110:Cov 11930:Cov 11774:Cov 11618:Cov 11560:Cov 10511:zip 10496:for 10469:sum 10445:sum 10427:len 10400:def 10264:Cov 10072:Exy 10027:Exy 9979:zip 9964:for 9955:Exy 9892:len 9865:def 9581:Cov 9557:Cov 9431:sum 9413:sum 9395:sum 9377:len 9350:def 9171:Cov 8322:for 8036:If 6529:for 6481:def 5005:AVX 4959:n_b 4953:n_a 4905:n_b 4899:n_a 4875:n_b 4857:n_a 4848:def 3944:for 3902:def 3700:def 3556:def 1777:for 1753:sum 1729:sum 1711:len 1690:def 1426:Ex2 1417:Ex2 1399:(): 1393:def 1354:(): 1348:def 1321:Ex2 1294:Ex2 1258:def 1231:Ex2 1180:Ex2 1144:def 1132:0.0 1126:Ex2 1053:Ex2 1017:Ex2 978:for 975:0.0 969:Ex2 945:0.0 921:len 903:def 898:as 588:Var 564:Var 467:+ 1 259:of 14497:: 14479:. 14450:. 14438:. 14426:^ 14412:. 14402:31 14400:. 14396:. 14371:. 14310:; 14288:. 14276:22 14274:. 14268:. 14249:. 14226:. 14216:69 14214:. 14169:. 14157:. 14117:. 14084:. 14074:. 14050:^ 14037:. 14029:. 14019:37 14017:. 14013:. 14002:; 13989:^ 13959:^ 12739:dx 12730:+= 12691:+= 12685:dx 12664:+= 12646:dx 12634:+= 12625:+= 12619:): 12595:in 12535:): 12438:dx 12435:+= 12408:+= 12396:dx 12393:+= 12375:dx 12369:+= 12363:): 12345:in 12303:): 10800:: 10562:+= 10550:i2 10535:i1 10526:): 10508:in 10505:i2 10499:i1 10418:): 10084:Ey 10078:Ex 10060:ky 10054:iy 10042:kx 10036:ix 10030:+= 10024:ky 10018:iy 10015:+= 10012:Ey 10009:kx 10003:ix 10000:+= 9997:Ex 9994:): 9976:in 9973:iy 9967:ix 9949:Ey 9943:Ex 9934:ky 9925:kx 9904:if 9883:): 9434:() 9368:): 8550:. 7770:: 6881:. 6850:** 6847:M2 6835:M4 6805:M2 6799:M2 6796:M2 6748:M3 6742:M3 6739:M3 6721:M2 6679:** 6655:M4 6649:M4 6631:n1 6607:** 6544:n1 6535:in 6520:M4 6514:M3 6508:M2 6493:): 5944:3. 5090:: 5062:, 5058:, 5054:, 5043:, 5039:, 5035:, 4974:M2 4944:** 4923:M2 4890:): 4843:. 4243:: 3995:** 3956:in 3914:): 3897:: 3841:)) 3823:M2 3811:M2 3742:if 3730:M2 3712:): 3691:M2 3661:+= 3658:M2 3631:+= 3607:+= 3592:M2 3574:): 3536:. 3174:: 2266:. 2024:, 1783:in 1771:** 1756:(( 1702:): 1435:** 1432:Ex 1411:Ex 1384:Ex 1372:Ex 1342:** 1324:-= 1309:-= 1306:Ex 1300:-= 1288:Ex 1270:): 1252:** 1234:+= 1219:+= 1216:Ex 1210:+= 1189:== 1183:if 1174:Ex 1156:): 1120:Ex 1062:** 1059:Ex 1038:** 1020:+= 1005:+= 1002:Ex 996:+= 984:in 963:Ex 918:if 915:): 484:Ɨ 463:ā† 456:: 14485:. 14458:. 14446:: 14440:9 14420:. 14408:: 14367:: 14348:. 14296:. 14282:: 14253:. 14234:. 14222:: 14177:. 14165:: 14159:4 14141:. 14113:: 14092:. 14070:: 14025:: 13983:. 13909:i 13905:w 13899:N 13894:1 13891:= 13888:i 13877:N 13873:C 13867:= 13864:) 13861:Y 13858:, 13855:X 13852:( 13844:N 13809:) 13804:k 13801:+ 13798:n 13788:y 13776:i 13772:y 13768:( 13765:) 13760:n 13750:x 13738:i 13734:x 13730:( 13725:i 13721:w 13715:k 13712:+ 13709:n 13704:1 13701:+ 13698:n 13695:= 13692:i 13679:+ 13671:n 13667:C 13663:= 13653:) 13648:n 13638:y 13626:i 13622:y 13618:( 13615:) 13610:k 13607:+ 13604:n 13594:x 13582:i 13578:x 13574:( 13569:i 13565:w 13559:k 13556:+ 13553:n 13548:1 13545:+ 13542:n 13539:= 13536:i 13523:+ 13515:n 13511:C 13507:= 13498:k 13495:+ 13492:n 13488:C 13475:i 13471:w 13465:k 13462:+ 13459:n 13454:1 13451:= 13448:i 13438:) 13433:n 13423:y 13411:i 13407:y 13403:( 13398:i 13394:w 13388:k 13385:+ 13382:n 13377:1 13374:+ 13371:n 13368:= 13365:i 13351:+ 13343:n 13333:y 13326:= 13317:k 13314:+ 13311:n 13301:y 13285:i 13281:w 13275:k 13272:+ 13269:n 13264:1 13261:= 13258:i 13248:) 13243:n 13233:x 13221:i 13217:x 13213:( 13208:i 13204:w 13198:k 13195:+ 13192:n 13187:1 13184:+ 13181:n 13178:= 13175:i 13161:+ 13153:n 13143:x 13136:= 13127:k 13124:+ 13121:n 13111:x 13078:N 13074:w 13067:, 13062:1 13058:w 13029:. 13022:X 13018:n 13011:B 13007:n 13001:A 12997:n 12987:) 12982:B 12972:y 12960:A 12950:y 12943:( 12940:) 12935:B 12925:x 12913:A 12903:x 12896:( 12893:+ 12888:B 12884:C 12880:+ 12875:A 12871:C 12867:= 12862:X 12858:C 12841:) 12835:/ 12829:- 12823:( 12820:/ 12817:C 12814:= 12805:) 12802:1 12799:- 12793:( 12790:/ 12787:C 12784:= 12769:/ 12766:C 12763:= 12757:) 12751:- 12748:y 12745:( 12742:* 12736:* 12733:w 12727:C 12724:) 12718:- 12715:y 12712:( 12709:* 12706:) 12700:/ 12697:w 12694:( 12682:* 12679:) 12673:/ 12670:w 12667:( 12655:- 12652:x 12649:= 12643:w 12640:* 12637:w 12628:w 12613:, 12607:, 12601:( 12592:w 12589:, 12586:y 12583:, 12580:x 12574:0 12571:= 12568:C 12565:0 12562:= 12556:= 12550:0 12547:= 12541:= 12529:, 12523:, 12517:( 12501:) 12498:1 12495:- 12492:n 12489:( 12486:/ 12483:C 12480:= 12471:n 12468:/ 12465:C 12462:= 12456:) 12450:- 12447:y 12444:( 12441:* 12432:C 12429:n 12426:/ 12423:) 12417:- 12414:y 12411:( 12402:n 12399:/ 12384:- 12381:x 12378:= 12372:1 12366:n 12357:, 12351:( 12342:y 12339:, 12336:x 12330:0 12327:= 12324:n 12321:= 12318:C 12315:= 12309:= 12297:, 12291:( 12264:. 12259:N 12255:) 12250:n 12240:y 12228:n 12224:y 12220:( 12217:) 12212:n 12202:x 12190:n 12186:x 12182:( 12176:1 12170:N 12166:N 12161:+ 12158:) 12155:1 12149:N 12146:( 12140:) 12137:Y 12134:, 12131:X 12128:( 12120:1 12114:N 12103:= 12091:N 12087:) 12082:1 12076:n 12066:y 12054:n 12050:y 12046:( 12043:) 12038:1 12032:n 12022:x 12010:n 12006:x 12002:( 11997:N 11993:1 11987:N 11981:+ 11978:) 11975:1 11969:N 11966:( 11960:) 11957:Y 11954:, 11951:X 11948:( 11940:1 11934:N 11923:= 11911:N 11907:) 11902:n 11892:y 11880:n 11876:y 11872:( 11869:) 11864:1 11858:n 11848:x 11836:n 11832:x 11828:( 11825:+ 11822:) 11819:1 11813:N 11810:( 11804:) 11801:Y 11798:, 11795:X 11792:( 11784:1 11778:N 11767:= 11755:N 11751:) 11746:1 11740:n 11730:y 11718:n 11714:y 11710:( 11707:) 11702:n 11692:x 11680:n 11676:x 11672:( 11669:+ 11666:) 11663:1 11657:N 11654:( 11648:) 11645:Y 11642:, 11639:X 11636:( 11628:1 11622:N 11611:= 11602:N 11597:N 11593:C 11587:= 11584:) 11581:Y 11578:, 11575:X 11572:( 11564:N 11529:) 11524:1 11518:n 11508:y 11496:n 11492:y 11488:( 11485:) 11480:1 11474:n 11464:x 11452:n 11448:x 11444:( 11439:n 11435:1 11429:n 11406:) 11401:1 11395:n 11385:x 11373:n 11369:x 11365:( 11360:n 11356:1 11350:n 11344:= 11341:) 11336:n 11326:x 11314:n 11310:x 11306:( 11279:) 11274:n 11264:y 11252:n 11248:y 11244:( 11241:) 11236:1 11230:n 11220:x 11208:n 11204:x 11200:( 11192:+ 11184:1 11178:n 11174:C 11170:= 11160:) 11155:1 11149:n 11139:y 11127:n 11123:y 11119:( 11116:) 11111:n 11101:x 11089:n 11085:x 11081:( 11073:+ 11065:1 11059:n 11055:C 11051:= 11042:n 11038:C 11028:n 11022:1 11016:n 11006:y 10994:n 10990:y 10980:+ 10972:1 10966:n 10956:y 10949:= 10940:n 10930:y 10917:n 10911:1 10905:n 10895:x 10883:n 10879:x 10869:+ 10861:1 10855:n 10845:x 10838:= 10829:n 10819:x 10788:) 10783:n 10773:y 10761:i 10757:y 10753:( 10750:) 10745:n 10735:x 10723:i 10719:x 10715:( 10710:n 10705:1 10702:= 10699:i 10691:= 10686:n 10682:C 10648:i 10644:y 10638:i 10611:i 10607:x 10601:i 10577:n 10574:/ 10571:b 10568:* 10565:a 10553:- 10547:= 10544:b 10538:- 10532:= 10529:a 10520:, 10514:( 10502:, 10493:0 10490:= 10484:n 10481:/ 10478:) 10472:( 10466:= 10460:n 10457:/ 10454:) 10448:( 10442:= 10436:) 10430:( 10424:= 10421:n 10412:, 10406:( 10380:. 10375:n 10371:) 10362:y 10351:i 10347:y 10343:( 10340:) 10331:x 10320:i 10316:x 10312:( 10307:n 10302:1 10299:= 10296:i 10285:= 10282:) 10279:Y 10276:, 10273:X 10270:( 10243:n 10239:/ 10233:i 10229:y 10223:n 10218:1 10215:= 10212:i 10204:= 10195:y 10171:n 10167:/ 10161:i 10157:x 10151:n 10146:1 10143:= 10140:i 10132:= 10123:x 10099:n 10096:/ 10093:) 10090:n 10087:/ 10081:* 10075:- 10069:( 10063:) 10057:- 10051:( 10048:* 10045:) 10039:- 10033:( 10021:- 10006:- 9988:, 9982:( 9970:, 9961:0 9958:= 9952:= 9946:= 9937:= 9928:= 9922:0 9916:: 9913:2 9907:n 9901:) 9895:( 9889:= 9886:n 9877:, 9871:( 9844:. 9838:n 9834:n 9830:/ 9826:) 9823:) 9818:y 9814:k 9805:i 9801:y 9797:( 9792:n 9787:1 9784:= 9781:i 9773:( 9770:) 9767:) 9762:x 9758:k 9749:i 9745:x 9741:( 9736:n 9731:1 9728:= 9725:i 9717:( 9711:) 9706:y 9702:k 9693:i 9689:y 9685:( 9682:) 9677:x 9673:k 9664:i 9660:x 9656:( 9651:n 9646:1 9643:= 9640:i 9628:= 9625:) 9620:y 9616:k 9609:Y 9606:, 9601:x 9597:k 9590:X 9587:( 9578:= 9575:) 9572:Y 9569:, 9566:X 9563:( 9534:, 9529:y 9525:k 9502:x 9498:k 9473:n 9470:/ 9467:) 9464:n 9461:/ 9455:* 9449:- 9443:( 9440:= 9428:= 9422:) 9416:( 9410:= 9404:) 9398:( 9392:= 9386:) 9380:( 9374:= 9371:n 9362:, 9356:( 9330:. 9325:n 9321:n 9317:/ 9313:) 9308:i 9304:y 9298:n 9293:1 9290:= 9287:i 9279:( 9276:) 9271:i 9267:x 9261:n 9256:1 9253:= 9250:i 9242:( 9234:i 9230:y 9224:i 9220:x 9214:n 9209:1 9206:= 9203:i 9192:= 9189:) 9186:Y 9183:, 9180:X 9177:( 9128:3 9118:4 9113:c 9103:c 9100:, 9097:4 9087:= 9082:c 9079:, 9076:4 9063:3 9058:c 9048:c 9045:, 9042:3 9032:= 9027:c 9024:, 9021:3 9010:c 9007:, 9004:2 8996:= 8991:2 8986:c 8975:c 8972:, 8969:1 8965:m 8961:= 8956:c 8928:) 8925:] 8920:n 8916:) 8906:x 8903:( 8900:[ 8894:E 8891:= 8886:n 8859:n 8855:m 8831:4 8828:, 8825:3 8822:, 8819:2 8816:, 8813:1 8810:= 8807:n 8794:c 8791:, 8788:0 8778:c 8775:, 8772:n 8762:= 8757:c 8754:, 8751:n 8747:m 8681:c 8654:4 8651:, 8648:3 8645:, 8642:2 8639:, 8636:1 8633:, 8630:0 8627:= 8624:n 8612:q 8609:, 8606:n 8596:Q 8591:1 8588:= 8585:q 8577:= 8572:c 8569:, 8566:n 8538:Q 8518:Q 8475:t 8450:h 8447:t 8443:q 8420:q 8417:, 8414:0 8386:Q 8383:, 8377:, 8374:2 8371:, 8368:1 8365:= 8362:q 8352:4 8349:, 8346:3 8343:, 8340:2 8337:, 8334:1 8331:= 8328:n 8313:q 8310:, 8307:0 8297:q 8294:, 8291:n 8287:m 8283:= 8278:q 8275:, 8272:n 8244:n 8222:n 8197:Q 8194:, 8188:, 8185:2 8182:, 8179:1 8176:= 8173:q 8152:) 8147:q 8144:, 8141:4 8133:, 8128:q 8125:, 8122:3 8114:, 8109:2 8104:q 8096:, 8091:q 8083:, 8078:q 8075:, 8072:0 8064:( 8044:Q 8017:) 8012:k 8008:x 8004:( 8001:h 7996:n 7990:) 7982:) 7979:h 7976:( 7971:1 7967:m 7958:k 7954:x 7948:( 7941:K 7936:1 7933:= 7930:k 7920:I 7917:1 7912:= 7907:) 7904:h 7901:( 7896:n 7868:) 7863:k 7859:x 7855:( 7852:h 7846:n 7841:k 7837:x 7831:K 7826:1 7823:= 7820:k 7810:I 7807:1 7802:= 7797:) 7794:h 7791:( 7786:n 7782:m 7758:x 7751:/ 7747:A 7744:= 7741:I 7721:x 7715:= 7710:k 7706:x 7680:) 7677:h 7674:( 7645:k 7641:x 7633:) 7628:k 7624:x 7620:( 7617:h 7612:n 7606:) 7598:) 7595:h 7592:( 7587:1 7583:m 7574:k 7570:x 7564:( 7557:K 7552:1 7549:= 7546:k 7536:A 7533:1 7528:= 7523:k 7519:x 7511:) 7506:k 7502:x 7498:( 7495:H 7489:n 7483:) 7475:) 7472:h 7469:( 7464:1 7460:m 7451:k 7447:x 7441:( 7434:K 7429:1 7426:= 7423:k 7415:= 7410:) 7407:h 7404:( 7399:n 7369:k 7365:x 7357:) 7352:k 7348:x 7344:( 7341:h 7336:n 7331:k 7327:x 7321:K 7316:1 7313:= 7310:k 7300:A 7297:1 7292:= 7287:k 7283:x 7275:) 7270:k 7266:x 7262:( 7259:H 7254:n 7249:k 7245:x 7239:K 7234:1 7231:= 7228:k 7220:= 7215:) 7212:h 7209:( 7204:n 7200:m 7176:) 7173:t 7170:( 7167:x 7147:n 7125:k 7121:x 7113:) 7108:k 7104:x 7100:( 7097:h 7092:K 7087:1 7084:= 7081:k 7073:= 7070:A 7048:k 7044:x 7023:) 7018:k 7014:x 7010:( 7007:H 6987:) 6982:k 6978:x 6974:( 6971:h 6946:A 6942:) 6937:k 6933:x 6929:( 6926:h 6920:= 6917:) 6912:k 6908:x 6904:( 6901:H 6862:3 6859:- 6856:) 6853:2 6844:( 6841:/ 6838:) 6832:* 6829:n 6826:( 6823:= 6808:+ 6802:= 6793:* 6787:* 6784:3 6781:- 6778:) 6775:2 6772:- 6769:n 6766:( 6763:* 6757:* 6751:+ 6745:= 6736:* 6730:* 6727:4 6724:- 6718:* 6712:* 6709:6 6706:+ 6703:) 6700:3 6697:+ 6694:n 6691:* 6688:3 6685:- 6682:2 6676:n 6673:( 6670:* 6664:* 6658:+ 6652:= 6643:+ 6637:= 6628:* 6622:* 6616:= 6610:2 6601:= 6595:n 6592:/ 6586:= 6577:- 6574:x 6571:= 6565:1 6562:+ 6559:n 6556:= 6553:n 6550:n 6547:= 6541:: 6532:x 6526:0 6523:= 6517:= 6511:= 6505:= 6499:= 6496:n 6487:( 6461:n 6457:/ 6424:n 6418:3 6414:M 6407:4 6394:2 6390:n 6383:2 6379:M 6373:2 6365:6 6359:+ 6352:3 6348:n 6343:) 6340:3 6337:+ 6334:n 6331:3 6323:2 6319:n 6315:( 6312:) 6309:1 6303:n 6300:( 6295:4 6284:+ 6279:4 6275:M 6271:= 6259:4 6255:M 6245:n 6239:2 6235:M 6228:3 6215:2 6211:n 6206:) 6203:2 6197:n 6194:( 6191:) 6188:1 6182:n 6179:( 6171:3 6163:+ 6158:3 6154:M 6150:= 6138:3 6134:M 6124:n 6120:1 6114:n 6106:2 6098:+ 6093:2 6089:M 6085:= 6073:2 6069:M 6059:n 6051:+ 6048:m 6045:= 6034:m 6026:m 6020:x 6017:= 5983:} 5980:x 5977:{ 5974:= 5971:B 5934:2 5929:2 5925:M 5918:4 5914:M 5910:n 5904:= 5899:2 5895:g 5891:= 5878:, 5871:2 5867:/ 5863:3 5858:2 5854:M 5847:3 5843:M 5837:n 5829:= 5824:1 5820:g 5816:= 5781:k 5777:) 5768:x 5760:x 5757:( 5732:k 5728:M 5696:X 5692:n 5685:A 5682:, 5679:3 5675:M 5669:B 5665:n 5656:B 5653:, 5650:3 5646:M 5640:A 5636:n 5626:4 5623:+ 5616:2 5611:X 5607:n 5600:A 5597:, 5594:2 5590:M 5584:2 5579:B 5575:n 5571:+ 5566:B 5563:, 5560:2 5556:M 5550:2 5545:A 5541:n 5532:2 5524:6 5521:+ 5505:3 5500:X 5496:n 5490:) 5484:2 5479:B 5475:n 5471:+ 5466:B 5462:n 5456:A 5452:n 5443:2 5438:A 5434:n 5429:( 5423:B 5419:n 5413:A 5409:n 5400:4 5392:+ 5381:B 5378:, 5375:4 5371:M 5367:+ 5362:A 5359:, 5356:4 5352:M 5348:= 5343:X 5340:, 5337:4 5333:M 5321:X 5317:n 5310:A 5307:, 5304:2 5300:M 5294:B 5290:n 5281:B 5278:, 5275:2 5271:M 5265:A 5261:n 5251:3 5248:+ 5241:2 5236:X 5232:n 5227:) 5222:B 5218:n 5209:A 5205:n 5201:( 5196:B 5192:n 5186:A 5182:n 5173:3 5165:+ 5154:B 5151:, 5148:3 5144:M 5140:+ 5135:A 5132:, 5129:3 5125:M 5121:= 5116:X 5113:, 5110:3 5106:M 4992:) 4989:1 4986:- 4983:n 4980:( 4977:/ 4971:= 4965:n 4962:/ 4956:* 4950:* 4947:2 4938:+ 4932:+ 4926:= 4917:- 4911:= 4902:+ 4896:= 4893:n 4884:, 4878:, 4872:, 4866:, 4860:, 4854:( 4827:B 4824:A 4820:n 4813:B 4803:x 4794:B 4790:n 4786:+ 4781:A 4771:x 4762:A 4758:n 4751:= 4746:B 4743:A 4733:x 4709:1 4706:= 4701:B 4697:n 4674:A 4664:x 4652:B 4642:x 4635:= 4610:B 4606:n 4597:A 4593:n 4577:. 4557:B 4554:A 4550:n 4543:B 4539:n 4533:A 4529:n 4517:2 4509:+ 4504:B 4501:, 4498:2 4494:M 4490:+ 4485:A 4482:, 4479:2 4475:M 4471:= 4462:B 4459:A 4456:, 4453:2 4449:M 4437:B 4434:A 4430:n 4424:B 4420:n 4408:+ 4403:A 4393:x 4386:= 4377:B 4374:A 4364:x 4351:A 4341:x 4329:B 4319:x 4312:= 4296:B 4292:n 4288:+ 4283:A 4279:n 4275:= 4266:B 4263:A 4259:n 4231:B 4211:A 4187:) 4181:/ 4175:- 4169:( 4166:/ 4163:S 4160:= 4151:) 4148:1 4145:- 4139:( 4136:/ 4133:S 4130:= 4115:/ 4112:S 4109:= 4103:) 4097:- 4094:x 4091:( 4088:* 4085:) 4079:- 4076:x 4073:( 4070:* 4067:w 4064:+ 4061:S 4058:= 4055:S 4052:) 4046:- 4043:x 4040:( 4037:* 4034:) 4028:/ 4025:w 4022:( 4019:+ 4013:= 4004:= 3998:2 3992:w 3989:+ 3983:= 3977:w 3974:+ 3968:= 3962:: 3953:w 3950:, 3947:x 3941:0 3938:= 3935:S 3932:= 3926:= 3920:= 3908:( 3891:n 3865:) 3859:, 3853:, 3847:( 3838:1 3835:- 3829:( 3826:/ 3820:, 3814:/ 3808:, 3802:( 3799:= 3796:) 3790:, 3784:, 3778:( 3775:: 3769:) 3763:( 3754:: 3751:2 3736:= 3733:) 3727:, 3721:, 3715:( 3706:( 3694:) 3688:, 3682:, 3676:( 3667:* 3652:- 3646:= 3637:/ 3622:- 3616:= 3610:1 3598:= 3595:) 3589:, 3583:, 3577:( 3568:, 3562:( 3522:k 3519:, 3516:2 3512:M 3508:= 3503:k 3499:S 3476:k 3466:x 3459:= 3454:k 3450:M 3419:1 3413:n 3407:n 3404:, 3401:2 3397:M 3391:= 3382:2 3377:n 3373:s 3363:n 3358:n 3355:, 3352:2 3348:M 3342:= 3333:2 3328:n 3316:) 3311:n 3301:x 3289:n 3285:x 3281:( 3278:) 3273:1 3267:n 3257:x 3245:n 3241:x 3237:( 3234:+ 3229:1 3223:n 3220:, 3217:2 3213:M 3209:= 3200:n 3197:, 3194:2 3190:M 3160:n 3157:, 3154:2 3150:M 3127:2 3123:) 3117:n 3107:x 3095:i 3091:x 3087:( 3082:n 3077:1 3074:= 3071:i 3056:n 3039:1 3033:n 3029:, 3023:1 3017:n 3011:2 3006:1 3000:n 2996:s 2985:n 2979:2 2975:) 2969:1 2963:n 2953:x 2941:n 2937:x 2933:( 2927:+ 2922:2 2917:1 2911:n 2907:s 2903:= 2898:n 2892:2 2888:) 2882:1 2876:n 2866:x 2854:n 2850:x 2846:( 2840:+ 2835:2 2830:1 2824:n 2820:s 2812:1 2806:n 2801:2 2795:n 2789:= 2784:2 2779:n 2775:s 2751:. 2746:n 2740:2 2735:1 2729:n 2718:) 2713:n 2703:x 2691:n 2687:x 2683:( 2680:) 2675:1 2669:n 2659:x 2647:n 2643:x 2639:( 2633:+ 2628:2 2623:1 2617:n 2609:= 2604:n 2600:) 2595:n 2585:x 2573:n 2569:x 2565:( 2562:) 2557:1 2551:n 2541:x 2529:n 2525:x 2521:( 2518:+ 2513:2 2508:1 2502:n 2493:) 2490:1 2484:n 2481:( 2475:= 2470:2 2465:n 2435:n 2429:1 2423:n 2413:x 2401:n 2397:x 2390:+ 2385:1 2379:n 2369:x 2362:= 2357:n 2351:n 2347:x 2343:+ 2338:1 2332:n 2322:x 2314:) 2311:1 2305:n 2302:( 2296:= 2291:n 2281:x 2248:2 2243:) 2237:n 2228:x 2217:i 2213:x 2208:( 2201:n 2196:1 2193:= 2190:i 2179:1 2173:n 2169:1 2164:= 2159:2 2154:n 2150:s 2123:2 2118:) 2112:n 2103:x 2092:i 2088:x 2083:( 2076:n 2071:1 2068:= 2065:i 2055:n 2052:1 2047:= 2042:2 2037:n 2012:) 2007:n 2003:x 1999:, 1993:, 1988:1 1984:x 1980:( 1970:n 1954:i 1950:x 1944:n 1939:1 1936:= 1933:i 1923:n 1920:1 1915:= 1910:n 1901:x 1887:n 1883:x 1852:i 1848:x 1820:n 1807:) 1804:1 1801:- 1798:n 1795:( 1792:/ 1789:) 1780:x 1774:2 1768:) 1762:- 1759:x 1750:= 1744:n 1741:/ 1738:) 1732:( 1726:= 1720:) 1714:( 1708:= 1705:n 1696:( 1683:s 1666:, 1659:1 1653:n 1646:2 1642:) 1632:x 1621:i 1617:x 1613:( 1608:n 1603:1 1600:= 1597:i 1585:= 1580:2 1576:s 1572:= 1541:, 1536:n 1530:j 1526:x 1520:n 1515:1 1512:= 1509:j 1498:= 1489:x 1465:) 1462:1 1459:- 1456:n 1453:( 1450:/ 1447:) 1444:n 1441:/ 1438:2 1429:- 1423:( 1414:, 1408:, 1405:n 1390:n 1387:/ 1381:+ 1378:K 1369:, 1366:n 1363:, 1360:K 1345:2 1339:) 1336:K 1333:- 1330:x 1327:( 1318:K 1315:- 1312:x 1303:1 1297:n 1291:, 1285:, 1282:n 1279:, 1276:K 1267:x 1264:( 1255:2 1249:) 1246:K 1243:- 1240:x 1237:( 1228:K 1225:- 1222:x 1213:1 1207:n 1204:x 1201:= 1198:K 1195:: 1192:0 1186:n 1177:, 1171:, 1168:n 1165:, 1162:K 1153:x 1150:( 1141:0 1138:= 1135:n 1129:= 1123:= 1117:= 1114:K 1092:) 1089:1 1086:- 1083:n 1080:( 1077:/ 1074:) 1071:n 1068:/ 1065:2 1056:- 1050:( 1047:= 1041:2 1035:) 1032:K 1029:- 1026:x 1023:( 1014:K 1011:- 1008:x 999:1 993:n 990:: 981:x 972:= 966:= 960:= 957:n 951:= 948:K 939:: 936:2 930:) 924:( 909:( 882:K 858:) 855:K 847:i 843:x 839:( 819:K 796:. 790:1 784:n 779:n 775:/ 769:2 765:) 761:) 758:K 750:i 746:x 742:( 737:n 732:1 729:= 726:i 718:( 710:2 706:) 702:K 694:i 690:x 686:( 681:n 676:1 673:= 670:i 659:= 654:2 626:K 603:. 600:) 597:X 594:( 585:= 582:) 579:K 573:X 570:( 521:n 508:n 504:n 486:x 482:x 474:x 465:n 461:n 454:x 446:n 421:. 415:1 409:n 405:n 396:) 390:2 385:) 380:n 374:i 370:x 364:n 359:1 356:= 353:i 342:( 332:n 326:2 321:i 317:x 311:n 306:1 303:= 300:i 288:( 284:= 279:2 275:s 261:n 232:. 227:N 223:N 219:/ 213:2 209:) 203:i 199:x 193:N 188:1 185:= 182:i 174:( 166:2 161:i 157:x 151:N 146:1 143:= 140:i 129:= 124:2 114:x 98:) 93:2 89:x 85:( 79:= 74:2 56:N

Index

computational statistics
algorithms
variance
numerical instability
arithmetic overflow
population
Bessel's correction
unbiased
sample
cancellation
precision
floating-point arithmetic
invariant
location parameter
Python programming language
compensated summation
single pass
online algorithm
recurrence relation
mean
biased sample variance
unbiased sample variance
catastrophic cancellation
parallel algorithm
incremental algorithm
Weighted arithmetic mean Ā§ Weighted sample variance
AVX
GPUs
computer clusters
IEEE 754 double-precision

Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.

ā†‘