.. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_distribution_transformation.py: Apply a transform or inverse transform on your polynomial chaos =============================================================== Introduction ------------ In this document we present the transformation involved in the creation of a polynomial chaos. Indeed, the polynomial chaos expansion is never directly applied to the input random variable of a model :math:`g`. Instead, the expansion is expressed based on the associated standard random variable. In this example, we show how to transform a Log-Normal random variable into its standardized variable with the class `DistributionTransformation`. Probabilistic transform ----------------------- Let :math:`T` be the probabilistic transform which maps the physical random variable :math:`X` to the standardized random variable :math:`\xi`: .. math:: \xi = T(X). Let :math:`F_X` be the Cumulative Distribution Function (CDF) associated with the random variable :math:`X` and let :math:`F_\xi` be the CDF associated with the random variable :math:`\xi`. Therefore, :math:`F_\xi` is the CDF associated with the orthogonal polynomials involved in the polynomial chaos expansion. In this case, the transform is: .. math:: \xi = F_\xi^{-1} \left( F_X(X) \right), for any :math:`X \in \mathbb{R}`. Example ------- We want to use the Hermite orthogonal polynomials to expand a Log-Normal random variable: * let :math:`X` follow the Log-Normal distribution with the following parameters: Lognormal(:math:`\mu=3 \times 10^4`, :math:`\sigma=9\times 10^3`), * let :math:`Z=\xi` follow the Normal distribution with zero mean and unit standard deviation (the letter :math:`Z` is often used for standard Normal random variables). Let :math:`F_{LN}` be the CDF of the Log-Normal distribution associated with :math:`X` and let :math:`\Phi` be the CDF of the standard Normal distribution. Therefore, .. math:: Z = T(X) = \Phi^{-1}(F_{LN}(X)), for any :math:`X \in \mathbb{R}`. .. code-block:: default import openturns as ot In the first step, we define the LogNormal distribution. Its parameters - mean and standard deviation - have been selected so that there is no ambiguity with the standard Normal distribution. This parametrization can be used thanks to the `ParametrizedDistribution` class. .. code-block:: default Xparam = ot.LogNormalMuSigma(3.0e4, 9.0e3, 15.0e3) # in N X = ot.ParametrizedDistribution(Xparam) Then we generate a 5-point sample. .. code-block:: default sampleX = X.getSample(5) sampleX .. raw:: html
X0
024851.57
139644.81
227619.95
328962.72
425575.91


In the second step, we define the random variable :math:`Z` with standard Normal distribution. .. code-block:: default Z = ot.Normal() We also generate a sample from it. .. code-block:: default sampleZ = Z.getSample(5) sampleZ .. raw:: html
X0
0-0.2627547
10.2319856
2-0.3728253
3-0.3093705
4-1.054682


In the third step, we create the transform T which maps X to Z. .. code-block:: default T = ot.DistributionTransformation(X,Z) We apply this transform on the sample generated from `X`. .. code-block:: default T(sampleX) .. raw:: html
y0
0-0.4809216
11.172666
2-0.03431651
30.1480268
4-0.3529745


The inverse transform maps :math:`Z` into :math:`X`. .. code-block:: default Tinverse = T.inverse() .. code-block:: default Tinverse(sampleZ) .. raw:: html
y0
026118.46
129628.14
225460.13
325834.74
422166.9


Conclusion ---------- The `DistributionTransformation` class is rarely used directly because the polynomial chaos classes perform the transformation automatically. However, understanding how this transform is done clarifies why the coefficients of the chaos expansion cannot be related to the input random variable :math:`X`: the expansion is based on the standard variables :math:`\xi`. Hence, the absolute values of the corresponding coefficients have no straightforward interpretation, even though squaring them yields the part of the global variance associated with each coefficient. .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.003 seconds) .. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_distribution_transformation.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_chaos_distribution_transformation.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_chaos_distribution_transformation.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_