Note
Click here to download the full example code
Create a maximum entropy statistics distributionΒΆ
In this example we are going to build maximum entropy statistics distribution, which yields ordered realizations:
import openturns as ot
import openturns.viewer as viewer
from matplotlib import pylab as plt
ot.Log.Show(ot.Log.NONE)
create a collection of distribution
coll = [ot.Beta(1.5, 1.7, 0.0, 1.0), ot.Beta(2.0, 2.3, 0.5, 1.2)]
create the distribution
distribution = ot.MaximumEntropyOrderStatisticsDistribution(coll)
print(distribution)
Out:
MaximumEntropyOrderStatisticsDistribution(collection = [Beta(alpha = 1.5, beta = 1.7, a = 0, b = 1),Beta(alpha = 2, beta = 2.3, a = 0.5, b = 1.2)])
draw a sample (ordered!)
distribution.getSample(10)
draw PDF
graph = distribution.drawPDF()
view = viewer.View(graph)
plt.show()
Out:
/home/devel/project/build/python/src/site-packages/openturns/viewer.py:442: UserWarning: No contour levels were found within the data range.
contourset = self._ax[0].contour(X, Y, Z, **contour_kw)
Total running time of the script: ( 0 minutes 0.565 seconds)