Statistics[FrequencyTable] - compute the frequency table for a data sample
|
Calling Sequence
|
|
FrequencyTable(A, options)
|
|
Parameters
|
|
A
|
-
|
Array; data sample
|
options
|
-
|
(optional) equation(s) of the form option=value where option is one of ignore, weights, or bins; specify options for the FrequencyTable function
|
|
|
|
|
Description
|
|
•
|
The FrequencyTable command computes the frequency table for the data set A. This is done by subdividing all data from A into the specified number of ranges of equal size and computing the number of observations falling in each range. The ranges are considered closed from the left and open from the right, the rightmost range is also closed from the right. The FrequencyTable command returns a 5-column Array. The first column contains the ranges. The remaining four columns contain the absolute frequency, the percentage, the cumulative frequency and the cumulative percentage of the data.
|
•
|
The first parameter A is the data set, given as a one-dimensional Array.
|
|
|
Computation
|
|
•
|
All computations involving data are performed in floating-point; therefore, all data provided must have type realcons and all returned solutions are floating-point, even if the problem is specified with exact values.
|
|
|
Options
|
|
|
The options argument can contain one or more of the options shown below. Some of these options are described in more detail in the Statistics[DescriptiveStatistics] help page.
|
•
|
ignore=truefalse -- This option controls how missing data is handled by the FrequencyTable command. Missing items are represented by undefined or Float(undefined). So, if ignore=false and A contains missing data, most of the statistics command will yield undefined. If ignore=true all missing items in A will be ignored. The default value is false.
|
•
|
weights=Vector -- Data weights. The number of elements in the weights array must be equal to the number of elements in the original data sample. By default all elements in A are assigned weight .
|
•
|
bins=posint -- If this option is set, every data range will be subdivided into the given number of equal subintervals. Note that each subinterval except for the last one is considered closed from the left and open from the right; the last subinterval in each range includes both endpoints. The default value of bins is 10 if only one range is given and 1 if multiple ranges are given.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
Try fewer bins.
>
|
|
| (3) |
Consider a data set with missing values.
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
Try weighted data.
>
|
|
| (7) |
>
|
|
| (8) |
>
|
|
| (9) |
|
|
References
|
|
|
Stuart, Alan, and Ord, Keith. Kendall's Advanced Theory of Statistics. 6th ed. London: Edward Arnold, 1998. Vol. 1: Distribution Theory.
|
|
|
Download Help Document
Was this information helpful?