DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T d

⟦ea4f48bfd⟧ TextFile

    Length: 3213 (0xc8d)
    Types: TextFile
    Names: »desc.1«

Derivation

└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
    └─ ⟦this⟧ »cph85dist/stat/doc/man/desc.1« 

TextFile

.TH DESC 1 "March 5, 1985" "UNIX|STAT 5.0" "UNIX User's Manual"
.SH NAME
desc \- describing a single distribution
.SH SYNOPSIS
.B desc
[-i N  -m N  -M N  -cfph -o -s -F N]
.SH DESCRIPTION
.I desc
does a number of summary statistics and frequency counts.
.I desc
reads from the standard input
(via redirection with < or piped with |)
and writes to the standard output.
The program's input is a series of numbers
separated by newlines, tabs or spaces.
Summary statistics can be obtained without use of program arguments.
.SH OPTIONS
.PP
The options available with 
.I desc
allow you to request various
types of descriptions of your data, as well as control the
format of these descriptions.
In the following section, when an
option is followed by N, a numerical argument is expected.
Program arguments (options) can be combined in any number or order.
.TP
.B -c
changes f and p options to CUMULATIVE.
.TP
.B -f
table of midpoints and FREQUENCIES.
.TP
.B -F N
requests a F-TEST of Ho: mean = N (also t).
.TP
.B -h
prints a HISTOGRAM with frequencies.
.TP
.B -i N
sets the INTERVAL WIDTH for h, f & p.
.TP
.B -m N
sets the MINIMUM number of the first interval.
All numbers below N are IGNORED ON INPUT.
.TP
.B -M N
sets the MAXIMUM number allowed to N.
Numbers larger than N are IGNORED ON INPUT.
.TP
.B -o
requests ORDER statistics (also S).
.TP
.B -p
table of midpoints and PROPORTIONS.
.TP
.B -s
summary STATISTICS according to SPSS formulas.
.TP
.B -S
requests order STATISTICS
.TP
.B -v
output statistics in VARIABLE (name=value) format
(useful for input to CALC calculator).
.PP
When computing frequencies, numbers on bin boundaries
end up in the next lower bin, except for the numbers
on the lower boundary of the first bin, which are put in the first bin.
Thus, the first bin is a doubly closed interval,
while all the others are half open: [],(],(],(],(],...(]
.SH LIMITATIONS and DIAGNOSTICS
.PP
.I desc
does its computations in either one or two
passes, depending on whether the data is stored.
If the -i and -m options are used, then it is not
necessary to store the data for any frequency table.
If not, or if you want order statistics (which requires
storing and sorting the data), then the number of
input points is limited to some large number, such as 10,000.
The number of bins is limited to some large number, such as 1000.
.SH EXAMPLES
.ce
desc < file
prints basic statistics (same as desc -o < file)

.ce
desc -cf -m 0 -i 10 < file
prints a table of midpoints and CUMULATIVE FREQUENCIES.
The MINIMUM allowable number is 0,
and the INTERVAL WIDTH is 10, so the
first interval is [0,10] and the next is (10,20], and so on.
Intervals will be added to accommodate the largest numbers.
Because i and m are specified, there is no limit on the number of points.

.ce
desc -s -F 0 -m 100 -M 1000 -i 100 -cp < file
first prints summary STATISTICS.
Then it prints a F-VALUE, and prob (F).
Finally, desc will print a table
of interval midpoints and CUMULATIVE PROPORTIONS.
The MINIMUM allowable number is 100, the MAXIMUM allowable number is 1000,
and the INTERVAL WIDTH is 100.
.SH SEE\ ALSO
unixstat(1), dm(1)
.SH AUTHOR
Gary Perlman
.SH KEYWORDS
descriptive statistics, summary statistics, data analysis