1%feature("docstring") OT::GeneralizedExtremeValueFactory 2"GeneralizedExtremeValue factory. 3 4Returns the best model among the Frechet, Gumbel and Weibull estimates 5according to the BIC criterion. 6 7See also 8-------- 9DistributionFactory, GeneralizedExtremeValue, FrechetFactory, GumbelFactory, WeibullMaxFactory" 10 11// --------------------------------------------------------------------- 12 13%feature("docstring") OT::GeneralizedExtremeValueFactory::build 14" Estimate the distribution using the default strategy. 15 16**Available usages**: 17 18 build(*sample*) 19 20 build(*param*) 21 22 23Parameters 24---------- 25sample : 2-d sequence of float, of dimension 1 26 Data. 27param : Collection of :class:`~openturns.PointWithDescription` 28 A vector of parameters of the distribution. 29 30Returns 31------- 32distribution : :class:`~openturns.GeneralizedExtremeValueFactory` 33 The estimated distribution 34 35Notes 36----- 37The default strategy is trying to fit the three models :class:`~openturns.Frechet`, :class:`~openturns.Gumbel` and :class:`~openturns.WeibullMax`. Then the three models are classified w.r.t. the BIC criterion. The best one is returned." 38// ---------------------------------------------------------------------------- 39 40%feature("docstring") OT::GeneralizedExtremeValueFactory::buildAsGeneralizedExtremeValueFactory 41"Estimate the distribution as native distribution. 42 43Parameters 44---------- 45sample : :class:`~openturns.Sample` 46 Data 47 48Returns 49------- 50distribution : :class:`~openturns.GeneralizedExtremeValueFactory` 51 The estimated distribution" 52