Available constraints

The following sampling constraints are available:

# UncertainData.SamplingConstraints.TruncateStdType.

1
TruncateStd(nσ::Int)

A constraint indicating that the distribution furnishing an uncertain value should be truncated at (n standard deviations).

source

# UncertainData.SamplingConstraints.TruncateMinimumType.

1
TruncateMinimum(min::Number)

A constraint indicating that the distribution furnishing an uncertain value should be truncated below at some specified minimum value.

source

# UncertainData.SamplingConstraints.TruncateMaximumType.

1
TruncateMaximum(max::Number)

A constraint indicating that the distribution furnishing an uncertain value should be truncated above at some specified maximum value.

source

# UncertainData.SamplingConstraints.TruncateRangeType.

1
TruncateRange(min::Number, max::Number)

A constraint indicating that the distribution furnishing an uncertain value should be truncated at some range [min, max].

source

# UncertainData.SamplingConstraints.TruncateLowerQuantileType.

1
TruncateLowerQuantile(lower_quantile::Float64)

A constraint indicating that the distribution furnishing an uncertain value should be truncated below at some quantile.

source

# UncertainData.SamplingConstraints.TruncateUpperQuantileType.

1
TruncateUpperQuantile(upper_quantile::Float64)

A constraint indicating that the distribution furnishing an uncertain value should be truncated above at some quantile.

source

# UncertainData.SamplingConstraints.TruncateQuantilesType.

1
TruncateQuantiles(lower_quantile::Float64, upper_quantile::Float64)

A constraint indicating that the distribution furnishing an uncertain value should be truncated at some quantile quantile (lower_quantile, upper_quantile).

source