gemseo.uncertainty.distributions¶
Capabilities to create and manipulate probability distributions.
This package contains:
an abstract class
Distribution
to define the concept of probability distribution,an abstract class
ComposedDistribution
to define the concept of joint probability distribution by composing several instances ofDistribution
,a factory
DistributionFactory
to create instances ofDistribution
,concrete classes implementing these abstracts concepts, by interfacing:
the OpenTURNS library:
OTDistribution
andOTComposedDistribution
,the Scipy library:
SPDistribution
andSPComposedDistribution
.
Lastly, the class OTDistributionFitter
offers the possibility
to fit an OTDistribution
from data based on OpenTURNS.