Statistics[Distributions]
EmpiricalDistribution
Empirical distribution
Calling Sequence
Parameters
Description
Examples
References
Compatibility
EmpiricalDistribution(sample, opts)
sample
-
a list or rtable of samples
opts
(optional) an equation of the form probabilities = plist
The empirical distribution is a discrete probability distribution with probability function generated from the given sample.
If opts is not given, then Maple assigns a probability to each variate present within the sample equal to the fraction of occurrences of that value within the entire sample. If opts is specified, then plist should be a list or rtable of probabilities (nonnegative real numbers adding up to 1), having equally many entries as sample; the ith entry of plist specifies the probability for the ith entry of sample.
If all the values in sample are positive integers, you can use the ProbabilityTable distribution instead.
Note that the EmpiricalDistribution command is inert and should be used in combination with the RandomVariable command.
with⁡Statistics:
P≔Array⁡1,1,1,2,4,4,5.5:
X≔RandomVariable⁡EmpiricalDistribution⁡P:
ProbabilityFunction⁡X,1
37
ProbabilityFunction⁡X,5
0
ProbabilityFunction⁡X,5.5
17
CDF⁡X,4
67
Mean⁡X
2.64285714285714
Variance⁡X
2.908163265
Y≔RandomVariable⁡EmpiricalDistribution⁡1,2.5,4,5,probabilities=13,14,1360,15
Y≔_R0
ProbabilityFunction⁡Y,52
14
CDF⁡Y,4.5
0.8000000000
Median⁡Y
52
Tally⁡Sample⁡Y,106
1.=332622,2.50000000000000=250476,5.=199920,4.=216982
Evans, Merran; Hastings, Nicholas; and Peacock, Brian. Statistical Distributions. 3rd ed. Hoboken: Wiley, 2000.
Johnson, Norman, L.; Kotz, Samuel; and Balakrishnan, N. Continuous Univariate Distributions. 2nd ed. 2 vols. Hoboken: Wiley, 1995.
Stuart, Alan, and Ord, Keith. Kendall's Advanced Theory of Statistics. 6th ed. London: Edward Arnold, 1998. Vol. 1: Distribution Theory.
The probabilities option was introduced in Maple 16.
For more information on Maple 16 changes, see Updates in Maple 16.
See Also
Statistics
Statistics[RandomVariable]
Download Help Document