Julien Schueller
Julien Schueller
misc doc
- Graph: Add setIntegerX/YTick method to force integer ticks values (useful for sobol indices, optim graphs) - Enhance EnumerateFunction doc - New EnumerateFunction example - New chaos Sobol' indices confidence...
- #2073 - Rename *CenteredMoments methods to *CentralMoments methods (as found in the litterature) - New QuantileMatchingFactory class to estimate a distribution from quantiles - New HistogramFactory.buildFromQuantiles method to build...
- #2094 - #2098 - #2101
if a null basis term is passed to LMSA then the maxX_ matrix has a column of zeros then in buildCurrentMatrixFromIndices it may be copied to currentX_ depending on the...
I noticed the empirical estimation of the standardized moments does not match the analytical values from `getStandardMoment` ``` import openturns as ot distribution = ot.Uniform(8,10) sample = distribution.getSample(int(1e7)) sigma =...
attempt to solve #1333 - first implement bounds in Hyperbolic & norm inf enumerates, TODO: linear ? not easy... - then in OrthogonalProductPolynomialFactory we set the upper bounds of discrete...
Attempt to fix #2084 In many cases we just need to clip the proba level in [MinScalar, 1-ScalarEpsilon] because the quantile formula involves log. In some methods we also use...
so it works for weibullmin but not weibullmax which is the symmetric equivalent ``` In [1]: import openturns as ot In [2]: ot.WeibullMin().computeMinimumVolumeInterval(0.9) Out[2]: class=Interval name=Unnamed dimension=1 lower bound=class=Point name=Unnamed...
FunctionalChaosSobolIndices::summary method can be moved to the `__str__` method, like LinearModelAnalysis does