histogram_bin_uncertain
Aleatory uncertain variable - continuous histogram
Topics
continuous_variables, aleatory_uncertain_variables
Specification
Alias: None
Arguments: INTEGER
Default: no histogram bin uncertain variables
Child Keywords:
Required/Optional |
Description of Group |
Dakota Keyword |
Dakota Keyword Description |
---|---|---|---|
Optional |
Number of pairs defining each histogram bin variable |
||
Required |
Real abscissas for a bin histogram |
||
Required (Choose One) |
Density Values |
Ordinates specifying a “skyline” probability density function |
|
Frequency or relative probability of each bin |
|||
Optional |
Initial values for variables |
||
Optional |
Labels for the variables |
Description
Histogram uncertain variables are typically used to model a set of
empirical data. The bin histogram (contrast: histogram_point_uncertain
) is a continuous aleatory
distribution characterized by bins of non-zero width where the
uncertain variable may lie, together with the relative frequencies of
each bin. Hence it can be used to specify a marginal probability
density function arising from data.
The histogram_bin_uncertain
keyword specifies the number of
variables to be characterized as continuous histograms. The required
sub-keywords are: abscissas
(ranges of values the variable can take on) and either
ordinates
or
counts
(characterizing each
variable’s frequency information). When using histogram bin
variables, each variable must be defined by at least one bin (with two
bounding value pairs). When more than one histogram bin variable is
active, pairs_per_variable
can
be used to specify unequal apportionment of provided bin pairs among
the variables.
The abscissas
specification defines abscissa values (counts
, the specifications provide sets
of counts
specification can be
replaced with an ordinates
specification (
Conversion between the two specifications is straightforward: a
count/frequency is a cumulative probability quantity defined from the
product of the ordinate density value and the
To fully specify a bin-based histogram with
is the parameter value for the left boundary of a histogram bin and is the corresponding count for that bin. Alternatively, defines the ordinate density value for this bin within a skyline probability density function. The right boundary of the bin is defined by the left boundary of the next pair.the final pair specifies the right end of the last bin and must have a
or value of zero.the
values must be strictly increasing.all
or values must be positive, except for the last which must be zero.a minimum of two pairs must be specified for each bin-based histogram variable.
Examples
The pairs_per_variable
specification provides for the proper
association of multiple sets of
histogram_bin_uncertain = 2
pairs_per_variable = 3 4
abscissas = 5 8 10 .1 .2 .3 .4
counts = 17 21 0 12 24 12 0
descriptors = 'hbu_1' 'hbu_2'
pairs_per_variable
associates the first 3 abscissas
and counts
{(5,17),(8,21),(10,0)} with one bin-based histogram variable,
where one bin is defined between 5 and 8 with a count of 17 and another bin is defined between 8 and 10 with a count of 21. The following set of 4
FAQ
Difference between bin and point histograms: A (continuous) bin histogram specifies bins of non-zero width, whereas a (discrete) point histogram specifies individual point values, which can be thought of as bins with zero width. In the terminology of LHS [WJ98], the bin pairs specification defines a “continuous linear” distribution and the point pairs specification defines a “discrete histogram” distribution (although the points are real-valued, the number of possible values is finite).