.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_data_analysis/sample_analysis/plot_compare_unconditional_conditional_histograms.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_data_analysis_sample_analysis_plot_compare_unconditional_conditional_histograms.py: Compare unconditional and conditional histograms ================================================ .. GENERATED FROM PYTHON SOURCE LINES 6-29 In this example, we compare unconditional and conditional histograms for a simulation. We consider the :ref:`flooding model`. Let :math:`g` be a function which takes four inputs :math:`Q`, :math:`K_s`, :math:`Z_v` and :math:`Z_m` and returns one output :math:`S`. We first consider the (unconditional) distribution of the input :math:`Q`. Let :math:`t` be a given threshold on the output :math:`S`: we consider the event :math:`S > t`. Then we consider the conditional distribution of the input :math:`Q` given that :math:`S > t` that is to say :math:`Q|S > t`. If these two distributions are significantly different, we conclude that the input :math:`Q` has an impact on the event :math:`S > t`. In order to approximate the distribution of the output :math:`S`, we perform a Monte-Carlo simulation with size 500. The threshold :math:`t` is chosen as the 90% quantile of the empirical distribution of :math:`S`. In this example, the distribution is aproximated by its empirical histogram (but this could be done with another distribution approximation as well, such as kernel smoothing for example). .. GENERATED FROM PYTHON SOURCE LINES 31-39 .. code-block:: Python import numpy as np from openturns.usecases import flood_model import openturns as ot import openturns.viewer as viewer from matplotlib import pylab as plt ot.Log.Show(ot.Log.NONE) .. GENERATED FROM PYTHON SOURCE LINES 40-41 We use the `FloodModel` data class that contains all the case parameters. .. GENERATED FROM PYTHON SOURCE LINES 41-44 .. code-block:: Python fm = flood_model.FloodModel() .. GENERATED FROM PYTHON SOURCE LINES 45-47 Create an input sample from the joint `distribution` defined in the data class. We build an output sample by taking the image by the `model`. .. GENERATED FROM PYTHON SOURCE LINES 49-53 .. code-block:: Python size = 500 inputSample = fm.distribution.getSample(size) inputSample[:5] .. raw:: html
Q (m3/s)KsZv (m)Zm (m)B (m)L (m)Zb (m)Hd (m)
02032.97828.1643149.8182354.44882298.09834997.51155.276753.987806
1831.178432.0659849.857854.29531298.31574997.29755.187412.030507
21741.77619.3668149.0897555.0745299.14334999.43255.666932.719918
3800.47640.0074349.1621655.03673299.59985002.71255.557153.080748
4917.983538.2301849.1987854.97124302.27655008.60755.366593.816204


.. GENERATED FROM PYTHON SOURCE LINES 54-57 .. code-block:: Python outputSample = fm.model(inputSample) outputSample[:5] .. raw:: html
HSC
03.470401-5.9759261.034781
11.900478-5.4596431.140406
23.659279-5.6378221.102684
31.492342-7.9833980.7745734
41.66541-8.31860.7507753


.. GENERATED FROM PYTHON SOURCE LINES 58-59 Merge the input and output samples into a single sample. .. GENERATED FROM PYTHON SOURCE LINES 61-65 .. code-block:: Python sample = ot.Sample(inputSample) sample.stack(outputSample) sample[0:5] .. raw:: html
Q (m3/s)KsZv (m)Zm (m)B (m)L (m)Zb (m)Hd (m)HSC
02032.97828.1643149.8182354.44882298.09834997.51155.276753.9878063.470401-5.9759261.034781
1831.178432.0659849.857854.29531298.31574997.29755.187412.0305071.900478-5.4596431.140406
21741.77619.3668149.0897555.0745299.14334999.43255.666932.7199183.659279-5.6378221.102684
3800.47640.0074349.1621655.03673299.59985002.71255.557153.0807481.492342-7.9833980.7745734
4917.983538.2301849.1987854.97124302.27655008.60755.366593.8162041.66541-8.31860.7507753


.. GENERATED FROM PYTHON SOURCE LINES 66-68 Extract the first column of `inputSample` into the sample of the flowrates :math:`Q`. .. GENERATED FROM PYTHON SOURCE LINES 70-72 .. code-block:: Python sampleQ = inputSample[:, 0] .. GENERATED FROM PYTHON SOURCE LINES 73-76 The next cell defines a function that computes the conditional sample of a component given that the a marginal (defined by its index `criteriaComponent`) exceeds a given threshold, defined by its quantile level. .. GENERATED FROM PYTHON SOURCE LINES 76-98 .. code-block:: Python def computeConditionnedSample( sample, alpha=0.9, criteriaComponent=None, selectedComponent=0 ): """ Return values from the selectedComponent-th component of the sample. Selects the values according to the alpha-level quantile of the criteriaComponent-th component of the sample. """ dim = sample.getDimension() if criteriaComponent is None: criteriaComponent = dim - 1 sortedSample = sample.sortAccordingToAComponent(criteriaComponent) quantiles = sortedSample.computeQuantilePerComponent(alpha) quantileValue = quantiles[criteriaComponent] sortedSampleCriteria = sortedSample[:, criteriaComponent] indices = np.where(np.array(sortedSampleCriteria.asPoint()) > quantileValue)[0] conditionnedSortedSample = sortedSample[int(indices[0]):, selectedComponent] return conditionnedSortedSample .. GENERATED FROM PYTHON SOURCE LINES 99-100 Create an histogram for the unconditional flowrates. .. GENERATED FROM PYTHON SOURCE LINES 102-105 .. code-block:: Python numberOfBins = 10 histogram = ot.HistogramFactory().buildAsHistogram(sampleQ, numberOfBins) .. GENERATED FROM PYTHON SOURCE LINES 106-107 Extract the sub-sample of the input flowrates Q which leads to large values of the output S. .. GENERATED FROM PYTHON SOURCE LINES 109-110 Search the index of the marginal S in the columns of the sample. .. GENERATED FROM PYTHON SOURCE LINES 110-113 .. code-block:: Python criteriaComponent = list(sample.getDescription()).index("S") criteriaComponent .. rst-class:: sphx-glr-script-out .. code-block:: none 9 .. GENERATED FROM PYTHON SOURCE LINES 114-120 .. code-block:: Python alpha = 0.9 selectedComponent = 0 conditionnedSampleQ = computeConditionnedSample( sample, alpha, criteriaComponent, selectedComponent ) .. GENERATED FROM PYTHON SOURCE LINES 121-131 We could as well use: .. code-block:: # conditionnedHistogram = ot.HistogramFactory().buildAsHistogram(conditionnedSampleQ) but this creates an histogram with new classes, corresponding to `conditionnedSampleQ`. We want to use exactly the same classes as the full sample, so that the two histograms match. .. GENERATED FROM PYTHON SOURCE LINES 133-139 .. code-block:: Python first = histogram.getFirst() width = histogram.getWidth() conditionnedHistogram = ot.HistogramFactory().buildAsHistogram( conditionnedSampleQ, first, width ) .. GENERATED FROM PYTHON SOURCE LINES 140-141 Then creates a graphics with the unconditional and the conditional histograms. .. GENERATED FROM PYTHON SOURCE LINES 143-153 .. code-block:: Python graph = histogram.drawPDF() graph.setLegends(["Q"]) # graphConditionnalQ = conditionnedHistogram.drawPDF() graphConditionnalQ.setColors(["blue"]) graphConditionnalQ.setLegends([r"$Q | S > S_{%s}$" % (alpha)]) graph.add(graphConditionnalQ) view = viewer.View(graph) plt.show() .. image-sg:: /auto_data_analysis/sample_analysis/images/sphx_glr_plot_compare_unconditional_conditional_histograms_001.png :alt: Q (m3/s) PDF :srcset: /auto_data_analysis/sample_analysis/images/sphx_glr_plot_compare_unconditional_conditional_histograms_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 154-162 We see that the two histograms are very different. The high values of the input :math:`Q` seem to often lead to a high value of the output :math:`S`. We could explore this situation further by comparing the unconditional distribution of :math:`Q` (which is known in this case) with the conditonal distribution of :math:`Q | S > t`, estimated by kernel smoothing. This would have the advantage of accuracy, since the kernel smoothing is a more accurate approximation of a distribution than the histogram. .. _sphx_glr_download_auto_data_analysis_sample_analysis_plot_compare_unconditional_conditional_histograms.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_compare_unconditional_conditional_histograms.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_compare_unconditional_conditional_histograms.py `