Calculates summary statistics for one or more series.
STATSUM(s1, s2, s3, ..., sN)
sN |
- |
One or more series. |
A table, the summary statistics for each column of the input series.
W1: 1..10;
W2: 1..100;
W3: statsum(w1, w2)
W3 contains a table similar to:
Sample Size |
Mean |
Variance |
Std. Deviation |
Std. Error |
Maximum |
Minimum |
Range |
RMS |
10 |
5.5 |
9.167 |
3.0277 |
0.95743 |
10 |
1 |
9 |
6.2048 |
100 |
50.5 |
841.667 |
29.0115 |
2.90115 |
100 |
1 |
99 |
58.1679 |
If any input series contains more than one column, the summary statistics of each column is computed.