ems:UniformDistribution
Probability distributions:
ems:PointEstimate,
ems:UniformDistribution,
ems:TriangularDistribution,
ems:NormalDistribution,
ems:PoissonDistribution,
ems:QuantileFunction,
ems:CumulativeDistributionFunction
Description
A
uniform distribution is a probability distribution in which any value between a given low and high value is equally probable, and any value outside that range has zero probability.
An ems:UniformDistribution resource represents a uniform distribution.
Properties
An ems:UniformDistribution resource has the following properties:
ems:low
This is the low value of the distribution. The probability is zero below this value and goes positive above this value.
ems:high
This is the high value of the distribution. The probability is zero above this value and goes positive below this value.
Examples
Uniform Distribution 1
The following resource represents a uniform distribution with a low value of 30000 and a high value of 100000:
Listing of Uniform Distribution 1
<?xml version="1.0"?>
<ems:UniformDistribution xmlns:ems="http://open-services.net/ns/ems#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<ems:low rdf:datatype="http://www.w3.org/2001/XMLSchema#double">30000</ems:low>
<ems:high rdf:datatype="http://www.w3.org/2001/XMLSchema#double">100000</ems:high>
</ems:UniformDistribution>
Comments
Enter your comments here:
Topic revision: r7 - 24 Sep 2010 - 15:15:15 -
ArthurRyman