1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#! /usr/bin/env python
import openturns as ot
ot.TESTPREAMBLE()
distribution = ot.Burr(2.5, 1.5)
size = 10000
sample = distribution.getSample(size)
factory = ot.BurrFactory()
estimatedDistribution = factory.build(sample)
print("distribution=", repr(distribution))
print("Estimated distribution=", repr(estimatedDistribution))
estimatedDistribution = factory.build()
print("Default distribution=", estimatedDistribution)
estimatedDistribution = factory.build(distribution.getParameter())
print("Distribution from parameters=", estimatedDistribution)
estimatedBurr = factory.buildAsBurr(sample)
print("Burr =", distribution)
print("Estimated burr=", estimatedBurr)
estimatedBurr = factory.buildAsBurr()
print("Default burr=", estimatedBurr)
estimatedBurr = factory.buildAsBurr(distribution.getParameter())
print("Burr from parameters=", estimatedBurr)
try:
estimatedBurr = factory.build(ot.Normal(1e-3, 1e-5).getSample(100))
print("Estimated burr=", estimatedBurr)
except Exception:
pass
ot.RandomGenerator.SetSeed(0)
try:
estimatedBurr = factory.build(
ot.UserDefined(ot.LogNormal(7.71, 1.0056).getSample(500)).getSupport()
)
# print('Estimated burr=', estimatedBurr)
except Exception:
pass
|