DADiSP Worksheet Functions > Function Categories > Statistics and Calculus > STATSUM

 

STATSUM

Purpose:

Calculates summary statistics for one or more series.

Syntax:

STATSUM(s1, s2, s3, ..., sN)

sN

-

One or more series.

Returns:

A table, the summary statistics for each column of the input series.

Example:

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

 

Remarks:

If any input series contains more than one column, the summary statistics of each column is computed.

See Also:

LENGTH

MAX

MEAN

MIN

RMS

STATS

STDERR

STDEV