histogram_point_uncertain
Aleatory uncertain variable - discrete histogram
Topics
discrete_variables, aleatory_uncertain_variables
Specification
Alias: None
Arguments: None
Default: no histogram point uncertain variables
Child Keywords:
Required/Optional |
Description of Group |
Dakota Keyword |
Dakota Keyword Description |
---|---|---|---|
Optional |
Integer valued point histogram variable |
||
Optional |
String (categorical) valued point histogram variable |
||
Optional |
Real valued point histogram variable |
Description
Histogram uncertain variables are typically used to model a set of
empirical data. When the variables take on only discrete values or
categories, a discrete, or point histogram is used to describe their
probability mass function (one could think of this as a
histogram_bin_uncertain
variable with “bins” of zero width).
Dakota supports integer-, string-, and real-valued point histograms.
Point histograms are similar to discrete_design_set
and
discrete_state_set
, but as they are uncertain
variables, include the relative probabilities of observing the
different values within the set.
The histogram_point_uncertain
keyword is followed by one or more of
integer
, string
, or real
, each of which specify the number of
variables to be characterized as discrete histograms of that sub-type.
Each discrete histogram variable is specified by one or more
abscissa/count pairs. The abscissas
, are the possible values the
variable can take on (counts
Thus, to fully specify a point-based histogram with
is the point value (integer, string, or real) and is the corresponding count for that value.the
values must be strictly increasing (lexicographically for strings).all
values must be positive.a minimum of one pair must be specified for each point-based histogram.
Examples
The pairs_per_variable
specification provides for the proper
association of multiple sets of
histogram_point_uncertain
integer = 2
pairs_per_variable = 2 3
abscissas = 3 4 100 200 300
counts = 1 1 1 2 1
pairs_per_variable
associates the
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).