PACKAGE | |STAT Data Manipulation and Analysis, by Gary Perlman |
---|---|
NAME | stats - print summary statistics |
SYNOPSIS | stats [-v] [n min max sum ss mean var sd skew kurt se] |
DESCRIPTION | stats prints summary statistics on the data read from the standard input. The data can be in any format, as long as some white space separates the input values. Non-numerical input values are ignored, so care must be taken to insure that the input is correct. |
OPTIONS |
With no options, stats prints a summary table of statistic names and
values separated by a tab delimited = sign. When options are
supplied, stats prints only the value of the statistics requested, in
the order they were requested, on one line.
The following standard help options are supported. The program exits after displaying the help.
|
EXAMPLES |
Print the standard error of the mean:
stats sd n | dm "x1 / x2^.5"Print the range of the data: stats min max | dm x2-x1Print the sum of the first 100 integers: series 1 100 | stats sumPrint a t-test of the mean against 0.0: stats mean se | dm x1/x2 |
SEE ALSO |
desc for univariate descriptive statistics and analysis.
ts for time series analysis. |
UPDATED | January 20, 1987 |