diff --git a/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip b/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip index e158ca0c5c0..31a61300a46 100644 Binary files a/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip and b/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip differ diff --git a/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip b/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip index d97835cd7a7..4ddfa513a70 100644 Binary files a/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip and b/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip differ diff --git a/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip b/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip index 3d939bad182..b758c0b904c 100644 Binary files a/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip and b/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip differ diff --git a/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip b/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip index dff87c9a3db..8249efc6451 100644 Binary files a/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip and b/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip differ diff --git a/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip b/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip index 3e897f2b28c..40cec4310c2 100644 Binary files a/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip and b/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip differ diff --git a/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip b/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip index 224a2e0583a..4e91365e0e5 100644 Binary files a/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip and b/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip differ diff --git a/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip b/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip index da338d8e529..3d8b4d86b3e 100644 Binary files a/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip and b/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip differ diff --git a/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip b/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip index 5b1cc2f53c6..2b231ed7649 100644 Binary files a/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip and b/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip differ diff --git a/openturns/master/_downloads/9f0e3ff26da804511cf84fb1bb79ac5d/LARS.py b/openturns/master/_downloads/9f0e3ff26da804511cf84fb1bb79ac5d/LARS.py new file mode 100644 index 00000000000..515b5ce6fb3 --- /dev/null +++ b/openturns/master/_downloads/9f0e3ff26da804511cf84fb1bb79ac5d/LARS.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python + +import openturns as ot +from openturns.usecases import ishigami_function +from openturns.viewer import View + +# data +ot.RandomGenerator.SetSeed(0) +im = ishigami_function.IshigamiModel() +N = 1000 +g = im.model +x = im.distributionX.getSample(N) +P = x.getDimension() +marginals = [im.distributionX.getMarginal(i) for i in range(P)] +y = g(x) + +# polynomial chaos +q, totalDegree = 0.4, 5 +enumerateFunction = ot.HyperbolicAnisotropicEnumerateFunction(P, q) +productBasis = ot.OrthogonalProductPolynomialFactory(marginals, enumerateFunction) +approximationAlgorithm = ot.LeastSquaresMetaModelSelectionFactory( + ot.LARS(), ot.CorrectedLeaveOneOut()) +adaptiveStrategy = ot.FixedStrategy( + productBasis, enumerateFunction.getStrataCumulatedCardinal(totalDegree)) +projectionStrategy = ot.LeastSquaresStrategy(approximationAlgorithm) +algo = ot.FunctionalChaosAlgorithm( + x, y, im.distributionX, adaptiveStrategy, projectionStrategy) +algo.run() +result = algo.getResult() +graph = result.drawSelectionHistory() +View(graph) diff --git a/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip b/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip index 85d364a3e13..307059999e4 100644 Binary files a/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip and b/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip differ diff --git a/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip b/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip index 737dbdc6e0d..8df149e41c9 100644 Binary files a/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip and b/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip differ diff --git a/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip b/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip index b741aa7ed95..97c928f6bbb 100644 Binary files a/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip and b/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip differ diff --git a/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip b/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip index 9e9e834cd0b..1ae7d848560 100644 Binary files a/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip and b/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip differ diff --git a/openturns/master/_downloads/c3e7a2fc93529a9a2db13024243b81d2/LARS.png b/openturns/master/_downloads/c3e7a2fc93529a9a2db13024243b81d2/LARS.png new file mode 100644 index 00000000000..3d056b165ac Binary files /dev/null and b/openturns/master/_downloads/c3e7a2fc93529a9a2db13024243b81d2/LARS.png differ diff --git a/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip b/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip index 03de2a8d87b..054e4a4dd77 100644 Binary files a/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip and b/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip differ diff --git a/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip b/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip index 3ec8c5774fa..8ea39f3eaf6 100644 Binary files a/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip and b/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip differ diff --git a/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip b/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip index 89d2d6fa7ec..3e39a5b41b6 100644 Binary files a/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip and b/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip differ diff --git a/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip b/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip index 368c00d7a24..2e1618dd410 100644 Binary files a/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip and b/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip differ diff --git a/openturns/master/_images/LARS.png b/openturns/master/_images/LARS.png new file mode 100644 index 00000000000..3d056b165ac Binary files /dev/null and b/openturns/master/_images/LARS.png differ diff --git a/openturns/master/_images/sphx_glr_plot_ego_009.png b/openturns/master/_images/sphx_glr_plot_ego_009.png index 30aac9e270c..6a5467223b5 100644 Binary files a/openturns/master/_images/sphx_glr_plot_ego_009.png and b/openturns/master/_images/sphx_glr_plot_ego_009.png differ diff --git a/openturns/master/_images/sphx_glr_plot_ifs_001.png b/openturns/master/_images/sphx_glr_plot_ifs_001.png index 28a5773ccf7..d15d8b6b7c4 100644 Binary files a/openturns/master/_images/sphx_glr_plot_ifs_001.png and b/openturns/master/_images/sphx_glr_plot_ifs_001.png differ diff --git a/openturns/master/_images/sphx_glr_plot_ifs_002.png b/openturns/master/_images/sphx_glr_plot_ifs_002.png index 3a53df24de2..e4776b136e3 100644 Binary files a/openturns/master/_images/sphx_glr_plot_ifs_002.png and b/openturns/master/_images/sphx_glr_plot_ifs_002.png differ diff --git a/openturns/master/_images/sphx_glr_plot_ifs_003.png b/openturns/master/_images/sphx_glr_plot_ifs_003.png index 086795710bd..29e8edfd47b 100644 Binary files a/openturns/master/_images/sphx_glr_plot_ifs_003.png and b/openturns/master/_images/sphx_glr_plot_ifs_003.png differ diff --git a/openturns/master/_images/sphx_glr_plot_ifs_004.png b/openturns/master/_images/sphx_glr_plot_ifs_004.png index 9100e49dcbd..5fd0407695f 100644 Binary files a/openturns/master/_images/sphx_glr_plot_ifs_004.png and b/openturns/master/_images/sphx_glr_plot_ifs_004.png differ diff --git a/openturns/master/_images/sphx_glr_plot_ifs_thumb.png b/openturns/master/_images/sphx_glr_plot_ifs_thumb.png index 53f41571bb0..e2ecbe0a4dc 100644 Binary files a/openturns/master/_images/sphx_glr_plot_ifs_thumb.png and b/openturns/master/_images/sphx_glr_plot_ifs_thumb.png differ diff --git a/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png b/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png index 056207cfac7..1f541a925cf 100644 Binary files a/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png and b/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png differ diff --git a/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png b/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png index d7711199494..3654a94a42a 100644 Binary files a/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png and b/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png differ diff --git a/openturns/master/_images/sphx_glr_plot_pce_design_001.png b/openturns/master/_images/sphx_glr_plot_pce_design_001.png index acf795caf7d..85c81db101a 100644 Binary files a/openturns/master/_images/sphx_glr_plot_pce_design_001.png and b/openturns/master/_images/sphx_glr_plot_pce_design_001.png differ diff --git a/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png b/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png index 5b81c766882..8ac94897aeb 100644 Binary files a/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png and b/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png differ diff --git a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt index e9ad61aee82..82941197895 100644 --- a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt +++ b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt @@ -283,7 +283,7 @@ Let us plot the posterior density. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 13.207 seconds) + **Total running time of the script:** (0 minutes 12.594 seconds) .. _sphx_glr_download_auto_calibration_bayesian_calibration_plot_gibbs.py: diff --git a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt index 1498a18011d..ae5555d8393 100644 --- a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt +++ b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt @@ -427,7 +427,7 @@ Plot posterior marginal plots only as prior cannot be drawn meaningfully. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 6.489 seconds) + **Total running time of the script:** (0 minutes 5.746 seconds) .. _sphx_glr_download_auto_calibration_bayesian_calibration_plot_rwmh_python_distribution.py: diff --git a/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt b/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt index c56e659eb6c..3b3761d0325 100644 --- a/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt @@ -6,20 +6,20 @@ Computation times ================= -**00:24.836** total execution time for **auto_calibration_bayesian_calibration** files: +**00:23.042** total execution time for **auto_calibration_bayesian_calibration** files: +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs.py` (``plot_gibbs.py``) | 00:13.207 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs.py` (``plot_gibbs.py``) | 00:12.594 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_rwmh_python_distribution.py` (``plot_rwmh_python_distribution.py``) | 00:06.489 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_rwmh_python_distribution.py` (``plot_rwmh_python_distribution.py``) | 00:05.746 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration_flooding.py` (``plot_bayesian_calibration_flooding.py``) | 00:01.438 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration_flooding.py` (``plot_bayesian_calibration_flooding.py``) | 00:01.277 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration.py` (``plot_bayesian_calibration.py``) | 00:01.194 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration.py` (``plot_bayesian_calibration.py``) | 00:01.176 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs_simus.py` (``plot_gibbs_simus.py``) | 00:01.179 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs_simus.py` (``plot_gibbs_simus.py``) | 00:01.080 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_ackley_distribution.py` (``plot_ackley_distribution.py``) | 00:01.025 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_ackley_distribution.py` (``plot_ackley_distribution.py``) | 00:00.903 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_imh_python_distribution.py` (``plot_imh_python_distribution.py``) | 00:00.302 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_imh_python_distribution.py` (``plot_imh_python_distribution.py``) | 00:00.266 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt index 0d5bb4e4bb8..f366c3979ef 100644 --- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt +++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt @@ -1928,7 +1928,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 6.912 seconds) + **Total running time of the script:** (0 minutes 6.749 seconds) .. _sphx_glr_download_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_chaboche.py: diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt index 2c5f7937832..4fa7d453bf3 100644 --- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt +++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt @@ -896,7 +896,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 3.645 seconds) + **Total running time of the script:** (0 minutes 3.470 seconds) .. _sphx_glr_download_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_deflection_tube.py: diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt index c3a288a38f8..41fda97369d 100644 --- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt +++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt @@ -1696,7 +1696,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 9.409 seconds) + **Total running time of the script:** (0 minutes 8.888 seconds) .. _sphx_glr_download_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_flooding.py: diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt index 3af666da134..8ab0df0e006 100644 --- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt @@ -6,22 +6,22 @@ Computation times ================= -**00:21.207** total execution time for **auto_calibration_least_squares_and_gaussian_calibration** files: +**00:20.290** total execution time for **auto_calibration_least_squares_and_gaussian_calibration** files: +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_flooding.py` (``plot_calibration_flooding.py``) | 00:09.409 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_flooding.py` (``plot_calibration_flooding.py``) | 00:08.888 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_chaboche.py` (``plot_calibration_chaboche.py``) | 00:06.912 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_chaboche.py` (``plot_calibration_chaboche.py``) | 00:06.749 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_deflection_tube.py` (``plot_calibration_deflection_tube.py``) | 00:03.645 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_deflection_tube.py` (``plot_calibration_deflection_tube.py``) | 00:03.470 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_logistic.py` (``plot_calibration_logistic.py``) | 00:00.676 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_logistic.py` (``plot_calibration_logistic.py``) | 00:00.656 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_quickstart.py` (``plot_calibration_quickstart.py``) | 00:00.325 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_quickstart.py` (``plot_calibration_quickstart.py``) | 00:00.295 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_withoutobservedinputs.py` (``plot_calibration_withoutobservedinputs.py``) | 00:00.087 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_withoutobservedinputs.py` (``plot_calibration_withoutobservedinputs.py``) | 00:00.084 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_chaboche.py` (``plot_generate_chaboche.py``) | 00:00.079 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_chaboche.py` (``plot_generate_chaboche.py``) | 00:00.081 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_flooding.py` (``plot_generate_flooding.py``) | 00:00.074 | 0.0 MB | +| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_flooding.py` (``plot_generate_flooding.py``) | 00:00.067 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt index 33b8c47fa76..5676d8c81dd 100644 --- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt @@ -1061,7 +1061,7 @@ improvements with respect to model tested before. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 5.229 seconds) + **Total running time of the script:** (0 minutes 5.302 seconds) .. _sphx_glr_download_auto_data_analysis_distribution_fitting_plot_estimate_gev_fremantle.py: diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt index 78132ca529f..c7e550bb9f2 100644 --- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt @@ -1108,7 +1108,7 @@ quadratic model explains even better a large variation in the data. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 10.052 seconds) + **Total running time of the script:** (0 minutes 10.798 seconds) .. _sphx_glr_download_auto_data_analysis_distribution_fitting_plot_estimate_gev_racetime.py: diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt index 59f8ccc429a..8f2cf8ec7a1 100644 --- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt @@ -403,7 +403,7 @@ We build joint distribution from marginal distributions and dependency structure .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 5.615 seconds) + **Total running time of the script:** (0 minutes 5.438 seconds) .. _sphx_glr_download_auto_data_analysis_distribution_fitting_plot_estimate_multivariate_distribution.py: diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt index e2a063134dc..2b64da687da 100644 --- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt @@ -6,36 +6,36 @@ Computation times ================= -**00:29.068** total execution time for **auto_data_analysis_distribution_fitting** files: +**00:29.889** total execution time for **auto_data_analysis_distribution_fitting** files: +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_racetime.py` (``plot_estimate_gev_racetime.py``) | 00:10.052 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_racetime.py` (``plot_estimate_gev_racetime.py``) | 00:10.798 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_multivariate_distribution.py` (``plot_estimate_multivariate_distribution.py``) | 00:05.615 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_multivariate_distribution.py` (``plot_estimate_multivariate_distribution.py``) | 00:05.438 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_fremantle.py` (``plot_estimate_gev_fremantle.py``) | 00:05.229 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_fremantle.py` (``plot_estimate_gev_fremantle.py``) | 00:05.302 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_pirie.py` (``plot_estimate_gev_pirie.py``) | 00:01.901 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_pirie.py` (``plot_estimate_gev_pirie.py``) | 00:01.973 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_conditional_quantile.py` (``plot_estimate_conditional_quantile.py``) | 00:01.571 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_conditional_quantile.py` (``plot_estimate_conditional_quantile.py``) | 00:01.612 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_non_parametric_distribution.py` (``plot_estimate_non_parametric_distribution.py``) | 00:01.042 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_non_parametric_distribution.py` (``plot_estimate_non_parametric_distribution.py``) | 00:01.020 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_venice.py` (``plot_estimate_gev_venice.py``) | 00:00.670 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_venice.py` (``plot_estimate_gev_venice.py``) | 00:00.679 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_asymptotic_estimators_distribution.py` (``plot_asymptotic_estimators_distribution.py``) | 00:00.617 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_asymptotic_estimators_distribution.py` (``plot_asymptotic_estimators_distribution.py``) | 00:00.643 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_smoothing_mixture.py` (``plot_smoothing_mixture.py``) | 00:00.559 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_model_singular_multivariate_distribution.py` (``plot_model_singular_multivariate_distribution.py``) | 00:00.565 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_advanced_mle_estimator.py` (``plot_advanced_mle_estimator.py``) | 00:00.550 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_smoothing_mixture.py` (``plot_smoothing_mixture.py``) | 00:00.563 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_model_singular_multivariate_distribution.py` (``plot_model_singular_multivariate_distribution.py``) | 00:00.538 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_advanced_mle_estimator.py` (``plot_advanced_mle_estimator.py``) | 00:00.556 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_fit_extreme_value_distribution.py` (``plot_fit_extreme_value_distribution.py``) | 00:00.349 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_fit_extreme_value_distribution.py` (``plot_fit_extreme_value_distribution.py``) | 00:00.369 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_normal.py` (``plot_estimate_normal.py``) | 00:00.239 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_normal.py` (``plot_estimate_normal.py``) | 00:00.235 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_quantilematching_estimator.py` (``plot_quantilematching_estimator.py``) | 00:00.132 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_quantilematching_estimator.py` (``plot_quantilematching_estimator.py``) | 00:00.130 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_maximumlikelihood_estimator.py` (``plot_maximumlikelihood_estimator.py``) | 00:00.004 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt index aafd12cd3bd..1efe8cea553 100644 --- a/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt @@ -6,14 +6,14 @@ Computation times ================= -**00:00.921** total execution time for **auto_data_analysis_estimate_dependency_and_copulas** files: +**00:00.971** total execution time for **auto_data_analysis_estimate_dependency_and_copulas** files: +--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_non_parametric_copula.py` (``plot_estimate_non_parametric_copula.py``) | 00:00.348 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_non_parametric_copula.py` (``plot_estimate_non_parametric_copula.py``) | 00:00.370 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wavesurge.py` (``plot_estimate_dependence_wavesurge.py``) | 00:00.236 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wavesurge.py` (``plot_estimate_dependence_wavesurge.py``) | 00:00.246 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wind.py` (``plot_estimate_dependence_wind.py``) | 00:00.216 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wind.py` (``plot_estimate_dependence_wind.py``) | 00:00.232 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_copula.py` (``plot_estimate_copula.py``) | 00:00.122 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt index e8dd35c5aab..5e352823ddf 100644 --- a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt @@ -161,7 +161,7 @@ Estimate the process from the previous realization .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 4.070 seconds) + **Total running time of the script:** (0 minutes 4.250 seconds) .. _sphx_glr_download_auto_data_analysis_estimate_stochastic_processes_plot_estimate_multivariate_arma.py: diff --git a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt index 09dfc30e4bf..185b215a771 100644 --- a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt @@ -6,16 +6,16 @@ Computation times ================= -**00:06.887** total execution time for **auto_data_analysis_estimate_stochastic_processes** files: +**00:07.091** total execution time for **auto_data_analysis_estimate_stochastic_processes** files: +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_multivariate_arma.py` (``plot_estimate_multivariate_arma.py``) | 00:04.070 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_multivariate_arma.py` (``plot_estimate_multivariate_arma.py``) | 00:04.250 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_spectral_density_function.py` (``plot_estimate_spectral_density_function.py``) | 00:01.283 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_spectral_density_function.py` (``plot_estimate_spectral_density_function.py``) | 00:01.342 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_arma.py` (``plot_estimate_arma.py``) | 00:00.811 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_arma.py` (``plot_estimate_arma.py``) | 00:00.793 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_stationary_covariance_model.py` (``plot_estimate_stationary_covariance_model.py``) | 00:00.464 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_stationary_covariance_model.py` (``plot_estimate_stationary_covariance_model.py``) | 00:00.457 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_non_stationary_covariance_model.py` (``plot_estimate_non_stationary_covariance_model.py``) | 00:00.258 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_non_stationary_covariance_model.py` (``plot_estimate_non_stationary_covariance_model.py``) | 00:00.250 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt b/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt index dba20cf134d..f9f37191dc1 100644 --- a/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt @@ -381,7 +381,7 @@ Display figures .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 3.110 seconds) + **Total running time of the script:** (0 minutes 2.920 seconds) .. _sphx_glr_download_auto_data_analysis_graphics_plot_sensitivity_par_coo_ishigami.py: diff --git a/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt index 175d036fa52..b7e5c097de2 100644 --- a/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt @@ -6,12 +6,12 @@ Computation times ================= -**00:03.531** total execution time for **auto_data_analysis_graphics** files: +**00:03.365** total execution time for **auto_data_analysis_graphics** files: +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_graphics_plot_sensitivity_par_coo_ishigami.py` (``plot_sensitivity_par_coo_ishigami.py``) | 00:03.110 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_graphics_plot_sensitivity_par_coo_ishigami.py` (``plot_sensitivity_par_coo_ishigami.py``) | 00:02.920 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_clouds.py` (``plot_visualize_clouds.py``) | 00:00.252 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_clouds.py` (``plot_visualize_clouds.py``) | 00:00.267 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_pairs.py` (``plot_visualize_pairs.py``) | 00:00.169 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_pairs.py` (``plot_visualize_pairs.py``) | 00:00.177 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt index 1d14202a1d9..6a2f19ee07e 100644 --- a/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt @@ -6,18 +6,18 @@ Computation times ================= -**00:00.869** total execution time for **auto_data_analysis_manage_data_and_samples** files: +**00:00.884** total execution time for **auto_data_analysis_manage_data_and_samples** files: +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_correlation.py` (``plot_sample_correlation.py``) | 00:00.418 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_correlation.py` (``plot_sample_correlation.py``) | 00:00.442 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_pandas.py` (``plot_sample_pandas.py``) | 00:00.183 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_pandas.py` (``plot_sample_pandas.py``) | 00:00.174 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_linear_regression.py` (``plot_linear_regression.py``) | 00:00.139 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_linear_regression.py` (``plot_linear_regression.py``) | 00:00.146 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quantile_estimation_wilks.py` (``plot_quantile_estimation_wilks.py``) | 00:00.100 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quantile_estimation_wilks.py` (``plot_quantile_estimation_wilks.py``) | 00:00.097 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quick_start_point_and_sample.py` (``plot_quick_start_point_and_sample.py``) | 00:00.011 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quick_start_point_and_sample.py` (``plot_quick_start_point_and_sample.py``) | 00:00.008 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_estimate_moments.py` (``plot_estimate_moments.py``) | 00:00.005 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ @@ -25,7 +25,7 @@ Computation times +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sort_sample.py` (``plot_sort_sample.py``) | 00:00.004 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_import_export_sample_csv.py` (``plot_import_export_sample_csv.py``) | 00:00.002 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_randomize_sample_lines.py` (``plot_randomize_sample_lines.py``) | 00:00.002 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ +| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_import_export_sample_csv.py` (``plot_import_export_sample_csv.py``) | 00:00.002 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt index 0a9eb036042..5556f7dccb2 100644 --- a/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt @@ -6,16 +6,16 @@ Computation times ================= -**00:01.465** total execution time for **auto_data_analysis_sample_analysis** files: +**00:01.454** total execution time for **auto_data_analysis_sample_analysis** files: +--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_draw_survival.py` (``plot_draw_survival.py``) | 00:01.043 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_draw_survival.py` (``plot_draw_survival.py``) | 00:01.039 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_src_confidence.py` (``plot_src_confidence.py``) | 00:00.140 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_src_confidence.py` (``plot_src_confidence.py``) | 00:00.131 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_empirical_cdf.py` (``plot_visualize_empirical_cdf.py``) | 00:00.117 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_empirical_cdf.py` (``plot_visualize_empirical_cdf.py``) | 00:00.127 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_compare_unconditional_conditional_histograms.py` (``plot_compare_unconditional_conditional_histograms.py``) | 00:00.105 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_compare_unconditional_conditional_histograms.py` (``plot_compare_unconditional_conditional_histograms.py``) | 00:00.097 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_histogram.py` (``plot_visualize_histogram.py``) | 00:00.061 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_histogram.py` (``plot_visualize_histogram.py``) | 00:00.060 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt index d09bf671c26..5115b516312 100644 --- a/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt @@ -6,26 +6,26 @@ Computation times ================= -**00:02.608** total execution time for **auto_data_analysis_statistical_tests** files: +**00:02.684** total execution time for **auto_data_analysis_statistical_tests** files: +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_distribution.py` (``plot_kolmogorov_distribution.py``) | 00:01.324 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_distribution.py` (``plot_kolmogorov_distribution.py``) | 00:01.426 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_fitted_distribution_ranking.py` (``plot_fitted_distribution_ranking.py``) | 00:00.380 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_fitted_distribution_ranking.py` (``plot_fitted_distribution_ranking.py``) | 00:00.381 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_copula.py` (``plot_test_copula.py``) | 00:00.284 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_copula.py` (``plot_test_copula.py``) | 00:00.270 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_smirnov_test.py` (``plot_smirnov_test.py``) | 00:00.143 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_qqplot_graph.py` (``plot_qqplot_graph.py``) | 00:00.136 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_qqplot_graph.py` (``plot_qqplot_graph.py``) | 00:00.137 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_smirnov_test.py` (``plot_smirnov_test.py``) | 00:00.129 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_normality.py` (``plot_test_normality.py``) | 00:00.131 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_normality.py` (``plot_test_normality.py``) | 00:00.124 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_pvalue.py` (``plot_kolmogorov_pvalue.py``) | 00:00.099 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_pvalue.py` (``plot_kolmogorov_pvalue.py``) | 00:00.101 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_statistics.py` (``plot_kolmogorov_statistics.py``) | 00:00.072 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_statistics.py` (``plot_kolmogorov_statistics.py``) | 00:00.073 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_test.py` (``plot_kolmogorov_test.py``) | 00:00.030 | 0.0 MB | +| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_test.py` (``plot_kolmogorov_test.py``) | 00:00.037 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_independence.py` (``plot_test_independence.py``) | 00:00.005 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt index dcb0c008ae3..d6505799e2c 100644 --- a/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt @@ -6,18 +6,18 @@ Computation times ================= -**00:00.735** total execution time for **auto_functional_modeling_field_functions** files: +**00:00.717** total execution time for **auto_functional_modeling_field_functions** files: +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_function_manipulation.py` (``plot_function_manipulation.py``) | 00:00.359 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_function_manipulation.py` (``plot_function_manipulation.py``) | 00:00.339 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_logistic_growth_model.py` (``plot_logistic_growth_model.py``) | 00:00.207 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_logistic_growth_model.py` (``plot_logistic_growth_model.py``) | 00:00.205 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_viscous_fall_field_function.py` (``plot_viscous_fall_field_function.py``) | 00:00.088 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_viscous_fall_field_function_connection.py` (``plot_viscous_fall_field_function_connection.py``) | 00:00.085 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_viscous_fall_field_function_connection.py` (``plot_viscous_fall_field_function_connection.py``) | 00:00.077 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_viscous_fall_field_function.py` (``plot_viscous_fall_field_function.py``) | 00:00.084 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_vertexvalue_function.py` (``plot_vertexvalue_function.py``) | 00:00.003 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_vertexvalue_function.py` (``plot_vertexvalue_function.py``) | 00:00.002 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_value_function.py` (``plot_value_function.py``) | 00:00.002 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt index ff8e8acaa5b..def5cbf93e8 100644 --- a/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt @@ -6,8 +6,8 @@ Computation times ================= -**00:00.029** total execution time for **auto_functional_modeling_link_to_an_external_code** files: +**00:00.036** total execution time for **auto_functional_modeling_link_to_an_external_code** files: +-------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_link_to_an_external_code_plot_link_computer_code_coupling_tools.py` (``plot_link_computer_code_coupling_tools.py``) | 00:00.029 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_link_to_an_external_code_plot_link_computer_code_coupling_tools.py` (``plot_link_computer_code_coupling_tools.py``) | 00:00.036 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt index f8892918406..ddd44511f37 100644 --- a/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt @@ -6,8 +6,8 @@ Computation times ================= -**00:00.269** total execution time for **auto_functional_modeling_univariate_functions** files: +**00:00.227** total execution time for **auto_functional_modeling_univariate_functions** files: +---------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_univariate_functions_plot_createUnivariateFunction.py` (``plot_createUnivariateFunction.py``) | 00:00.269 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_univariate_functions_plot_createUnivariateFunction.py` (``plot_createUnivariateFunction.py``) | 00:00.227 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt index f318adf9166..2172324359d 100644 --- a/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt @@ -6,28 +6,28 @@ Computation times ================= -**00:00.272** total execution time for **auto_functional_modeling_vectorial_functions** files: +**00:00.267** total execution time for **auto_functional_modeling_vectorial_functions** files: +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_symbolic_function.py` (``plot_symbolic_function.py``) | 00:00.128 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_symbolic_function.py` (``plot_symbolic_function.py``) | 00:00.116 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_quadratic_function.py` (``plot_quadratic_function.py``) | 00:00.068 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_quadratic_function.py` (``plot_quadratic_function.py``) | 00:00.071 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_quick_start_functions.py` (``plot_quick_start_functions.py``) | 00:00.056 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_functions_inputDim.py` (``plot_functions_inputDim.py``) | 00:00.004 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_functions_inputDim.py` (``plot_functions_inputDim.py``) | 00:00.006 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_createMultivariateFunction.py` (``plot_createMultivariateFunction.py``) | 00:00.004 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_python_function.py` (``plot_python_function.py``) | 00:00.003 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_aggregated_function.py` (``plot_aggregated_function.py``) | 00:00.002 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_aggregated_function.py` (``plot_aggregated_function.py``) | 00:00.003 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_linear_combination_function.py` (``plot_linear_combination_function.py``) | 00:00.002 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_linear_combination_function.py` (``plot_linear_combination_function.py``) | 00:00.003 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_composed_function.py` (``plot_composed_function.py``) | 00:00.002 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_functions_outputDim.py` (``plot_functions_outputDim.py``) | 00:00.002 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_parametric_function.py` (``plot_parametric_function.py``) | 00:00.002 | 0.0 MB | +| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_parametric_function.py` (``plot_parametric_function.py``) | 00:00.001 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt b/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt index 613b7e0a25c..864aefe1cf6 100644 --- a/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt @@ -6,12 +6,12 @@ Computation times ================= -**00:02.077** total execution time for **auto_graphs** files: +**00:01.831** total execution time for **auto_graphs** files: +-------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_graphs_plot_graphs_basics.py` (``plot_graphs_basics.py``) | 00:01.172 | 0.0 MB | +| :ref:`sphx_glr_auto_graphs_plot_graphs_basics.py` (``plot_graphs_basics.py``) | 00:01.051 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_graphs_plot_graphs_loglikelihood_contour.py` (``plot_graphs_loglikelihood_contour.py``) | 00:00.748 | 0.0 MB | +| :ref:`sphx_glr_auto_graphs_plot_graphs_loglikelihood_contour.py` (``plot_graphs_loglikelihood_contour.py``) | 00:00.637 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_graphs_plot_graphs_fill_area.py` (``plot_graphs_fill_area.py``) | 00:00.156 | 0.0 MB | +| :ref:`sphx_glr_auto_graphs_plot_graphs_fill_area.py` (``plot_graphs_fill_area.py``) | 00:00.143 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt index a5c8200c524..40e70615518 100644 --- a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt @@ -498,7 +498,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 19.771 seconds) + **Total running time of the script:** (0 minutes 17.516 seconds) .. _sphx_glr_download_auto_meta_modeling_fields_metamodels_plot_fieldfunction_metamodel.py: diff --git a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_viscous_fall_metamodel.rst.txt b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_viscous_fall_metamodel.rst.txt index 3188b5e7f1a..7496a0d72ab 100644 --- a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_viscous_fall_metamodel.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_viscous_fall_metamodel.rst.txt @@ -407,11 +407,6 @@ Reset ResourceMap -.. rst-class:: sphx-glr-timing - - **Total running time of the script:** (0 minutes 2.426 seconds) - - .. _sphx_glr_download_auto_meta_modeling_fields_metamodels_plot_viscous_fall_metamodel.py: .. only:: html diff --git a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt index 67898fa5aa5..1832e218ed8 100644 --- a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt @@ -6,12 +6,12 @@ Computation times ================= -**00:22.796** total execution time for **auto_meta_modeling_fields_metamodels** files: +**00:19.726** total execution time for **auto_meta_modeling_fields_metamodels** files: +------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_fieldfunction_metamodel.py` (``plot_fieldfunction_metamodel.py``) | 00:19.771 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_fieldfunction_metamodel.py` (``plot_fieldfunction_metamodel.py``) | 00:17.516 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_viscous_fall_metamodel.py` (``plot_viscous_fall_metamodel.py``) | 00:02.426 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_viscous_fall_metamodel.py` (``plot_viscous_fall_metamodel.py``) | 00:01.763 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_karhunenloeve_validation.py` (``plot_karhunenloeve_validation.py``) | 00:00.599 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_karhunenloeve_validation.py` (``plot_karhunenloeve_validation.py``) | 00:00.447 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt index ec4208f4f55..cb1114c4142 100644 --- a/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt @@ -6,20 +6,20 @@ Computation times ================= -**00:02.294** total execution time for **auto_meta_modeling_general_purpose_metamodels** files: +**00:02.185** total execution time for **auto_meta_modeling_general_purpose_metamodels** files: +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_overfitting_model_selection.py` (``plot_overfitting_model_selection.py``) | 00:00.770 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_overfitting_model_selection.py` (``plot_overfitting_model_selection.py``) | 00:00.739 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_linear_model.py` (``plot_linear_model.py``) | 00:00.695 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_linear_model.py` (``plot_linear_model.py``) | 00:00.658 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_stepwise.py` (``plot_stepwise.py``) | 00:00.348 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_stepwise.py` (``plot_stepwise.py``) | 00:00.336 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_expert_mixture.py` (``plot_expert_mixture.py``) | 00:00.179 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_expert_mixture.py` (``plot_expert_mixture.py``) | 00:00.171 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_taylor_approximation.py` (``plot_taylor_approximation.py``) | 00:00.144 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_taylor_approximation.py` (``plot_taylor_approximation.py``) | 00:00.133 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_general_linear_model.py` (``plot_general_linear_model.py``) | 00:00.091 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_general_linear_model.py` (``plot_general_linear_model.py``) | 00:00.086 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_create_linear_least_squares_model.py` (``plot_create_linear_least_squares_model.py``) | 00:00.067 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_create_linear_least_squares_model.py` (``plot_create_linear_least_squares_model.py``) | 00:00.063 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt index b2f4a960b4b..a1958586432 100644 --- a/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt @@ -6,40 +6,40 @@ Computation times ================= -**00:06.770** total execution time for **auto_meta_modeling_kriging_metamodel** files: +**00:05.486** total execution time for **auto_meta_modeling_kriging_metamodel** files: +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_draw_covariance_models.py` (``plot_draw_covariance_models.py``) | 00:01.460 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_draw_covariance_models.py` (``plot_draw_covariance_models.py``) | 00:01.184 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_advanced.py` (``plot_kriging_advanced.py``) | 00:00.879 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_advanced.py` (``plot_kriging_advanced.py``) | 00:00.726 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_sequential.py` (``plot_kriging_sequential.py``) | 00:00.765 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_sequential.py` (``plot_kriging_sequential.py``) | 00:00.565 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_chose_trend.py` (``plot_kriging_chose_trend.py``) | 00:00.568 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_chose_trend.py` (``plot_kriging_chose_trend.py``) | 00:00.426 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_branin_function.py` (``plot_kriging_branin_function.py``) | 00:00.454 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_branin_function.py` (``plot_kriging_branin_function.py``) | 00:00.368 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_1d.py` (``plot_kriging_1d.py``) | 00:00.407 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_propagate_kriging_ishigami.py` (``plot_propagate_kriging_ishigami.py``) | 00:00.342 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_propagate_kriging_ishigami.py` (``plot_propagate_kriging_ishigami.py``) | 00:00.367 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_1d.py` (``plot_kriging_1d.py``) | 00:00.305 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_isotropic.py` (``plot_kriging_isotropic.py``) | 00:00.322 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_multioutput_firesatellite.py` (``plot_kriging_multioutput_firesatellite.py``) | 00:00.263 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_multioutput_firesatellite.py` (``plot_kriging_multioutput_firesatellite.py``) | 00:00.288 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_isotropic.py` (``plot_kriging_isotropic.py``) | 00:00.257 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_hyperparameters_optimization.py` (``plot_kriging_hyperparameters_optimization.py``) | 00:00.267 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_simulate.py` (``plot_kriging_simulate.py``) | 00:00.214 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_simulate.py` (``plot_kriging_simulate.py``) | 00:00.237 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_hyperparameters_optimization.py` (``plot_kriging_hyperparameters_optimization.py``) | 00:00.197 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam.py` (``plot_kriging_cantilever_beam.py``) | 00:00.197 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam_hmat.py` (``plot_kriging_cantilever_beam_hmat.py``) | 00:00.173 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_trend.py` (``plot_kriging_beam_trend.py``) | 00:00.196 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam.py` (``plot_kriging_cantilever_beam.py``) | 00:00.166 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam_hmat.py` (``plot_kriging_cantilever_beam_hmat.py``) | 00:00.194 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_trend.py` (``plot_kriging_beam_trend.py``) | 00:00.152 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_likelihood.py` (``plot_kriging_likelihood.py``) | 00:00.085 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_likelihood.py` (``plot_kriging_likelihood.py``) | 00:00.074 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging.py` (``plot_kriging.py``) | 00:00.073 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging.py` (``plot_kriging.py``) | 00:00.065 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_arbitrary_trend.py` (``plot_kriging_beam_arbitrary_trend.py``) | 00:00.009 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_arbitrary_trend.py` (``plot_kriging_beam_arbitrary_trend.py``) | 00:00.008 | 0.0 MB | +------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt index e861b999093..26bf19ac3fd 100644 --- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt @@ -576,7 +576,7 @@ References .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 6.718 seconds) + **Total running time of the script:** (0 minutes 6.063 seconds) .. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_beam_sensitivity_degree.py: diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt index 8f567fcba6f..5e1ed7af18c 100644 --- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt @@ -180,11 +180,6 @@ Reset default settings -.. rst-class:: sphx-glr-timing - - **Total running time of the script:** (0 minutes 2.066 seconds) - - .. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_build_distribution.py: .. only:: html diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt index 13cfcf320df..e3d3aea81a9 100644 --- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt @@ -1043,7 +1043,7 @@ produce the best Q2 score. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 2.372 seconds) + **Total running time of the script:** (0 minutes 2.014 seconds) .. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cleaning_strategy.py: diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt index 260ad530053..a20f1aa39c7 100644 --- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt @@ -671,7 +671,7 @@ When estimating the :math:`Q^2` score with the best parameters, the test set is .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 10.837 seconds) + **Total running time of the script:** (0 minutes 10.500 seconds) .. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cv.py: diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt index 9b797b08bd8..0f90fd89d9b 100644 --- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt @@ -619,7 +619,7 @@ Hence, there is no evidence that the Sobol' indices of E are zero. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 3.020 seconds) + **Total running time of the script:** (0 minutes 2.722 seconds) .. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_sobol_confidence.py: diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt index 9e0de2925ac..9278f2de4ef 100644 --- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt @@ -489,7 +489,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 7.704 seconds) + **Total running time of the script:** (0 minutes 7.139 seconds) .. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos.py: diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt index 41b1a87d472..9ba1ec1602d 100644 --- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt @@ -6,32 +6,32 @@ Computation times ================= -**00:35.038** total execution time for **auto_meta_modeling_polynomial_chaos_metamodel** files: +**00:32.507** total execution time for **auto_meta_modeling_polynomial_chaos_metamodel** files: +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cv.py` (``plot_chaos_cv.py``) | 00:10.837 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cv.py` (``plot_chaos_cv.py``) | 00:10.500 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos.py` (``plot_functional_chaos.py``) | 00:07.704 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos.py` (``plot_functional_chaos.py``) | 00:07.139 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_beam_sensitivity_degree.py` (``plot_chaos_beam_sensitivity_degree.py``) | 00:06.718 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_beam_sensitivity_degree.py` (``plot_chaos_beam_sensitivity_degree.py``) | 00:06.063 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_sobol_confidence.py` (``plot_chaos_sobol_confidence.py``) | 00:03.020 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_sobol_confidence.py` (``plot_chaos_sobol_confidence.py``) | 00:02.722 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cleaning_strategy.py` (``plot_chaos_cleaning_strategy.py``) | 00:02.372 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cleaning_strategy.py` (``plot_chaos_cleaning_strategy.py``) | 00:02.014 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_build_distribution.py` (``plot_chaos_build_distribution.py``) | 00:02.066 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_build_distribution.py` (``plot_chaos_build_distribution.py``) | 00:01.902 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_enumeratefunction.py` (``plot_enumeratefunction.py``) | 00:01.226 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_enumeratefunction.py` (``plot_enumeratefunction.py``) | 00:01.152 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_ishigami.py` (``plot_chaos_ishigami.py``) | 00:00.366 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_ishigami.py` (``plot_chaos_ishigami.py``) | 00:00.338 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cantilever_beam_integration.py` (``plot_chaos_cantilever_beam_integration.py``) | 00:00.288 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cantilever_beam_integration.py` (``plot_chaos_cantilever_beam_integration.py``) | 00:00.262 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_graphs.py` (``plot_functional_chaos_graphs.py``) | 00:00.242 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_graphs.py` (``plot_functional_chaos_graphs.py``) | 00:00.229 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_draw_validation.py` (``plot_chaos_draw_validation.py``) | 00:00.123 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_draw_validation.py` (``plot_chaos_draw_validation.py``) | 00:00.115 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_exploitation.py` (``plot_functional_chaos_exploitation.py``) | 00:00.024 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_exploitation.py` (``plot_functional_chaos_exploitation.py``) | 00:00.022 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_ishigami_grouped_indices.py` (``plot_chaos_ishigami_grouped_indices.py``) | 00:00.022 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ @@ -39,5 +39,5 @@ Computation times +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_advanced_ctors.py` (``plot_functional_chaos_advanced_ctors.py``) | 00:00.007 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_distribution_transformation.py` (``plot_chaos_distribution_transformation.py``) | 00:00.003 | 0.0 MB | +| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_distribution_transformation.py` (``plot_chaos_distribution_transformation.py``) | 00:00.002 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt index 96a46bba3b8..a0de6fdcaa5 100644 --- a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt @@ -275,7 +275,7 @@ Sierpinski triangle .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 8.157 seconds) + **Total running time of the script:** (0 minutes 7.427 seconds) .. _sphx_glr_download_auto_numerical_methods_general_methods_plot_ifs.py: diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt index a67a900c100..e41ea7a35f3 100644 --- a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt @@ -547,7 +547,7 @@ Compute leave-one-out error .. code-block:: none - mseLOO = 20.041523864361327 + mseLOO = 10.676716975968509 @@ -686,8 +686,8 @@ perform elementwise division and exponentiation .. code-block:: none - MSE LOO = 20.0415238643613 - Q2 LOO = -0.6484764307425532 + MSE LOO = 10.676716975968512 + Q2 LOO = 0.16911004351416403 diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt index 6bf4e3efaf9..6e8bfc1d50a 100644 --- a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt @@ -127,7 +127,7 @@ Example 3: using a previously saved generator state .. raw:: html
-

[-0.247438]

+

[0.464777]



@@ -150,7 +150,7 @@ load the generator state .. raw:: html
-

[-0.247438]

+

[0.464777]



diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt index eacb1a93189..1e5b2e2fb89 100644 --- a/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt @@ -6,22 +6,22 @@ Computation times ================= -**00:09.258** total execution time for **auto_numerical_methods_general_methods** files: +**00:08.448** total execution time for **auto_numerical_methods_general_methods** files: +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_ifs.py` (``plot_ifs.py``) | 00:08.157 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_ifs.py` (``plot_ifs.py``) | 00:07.427 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_pce_design.py` (``plot_pce_design.py``) | 00:00.425 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_sinus.py` (``plot_regression_sinus.py``) | 00:00.381 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_sinus.py` (``plot_regression_sinus.py``) | 00:00.413 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_pce_design.py` (``plot_pce_design.py``) | 00:00.379 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_estimate_integral_iterated_quadrature.py` (``plot_estimate_integral_iterated_quadrature.py``) | 00:00.150 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_estimate_integral_iterated_quadrature.py` (``plot_estimate_integral_iterated_quadrature.py``) | 00:00.126 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_interval.py` (``plot_regression_interval.py``) | 00:00.092 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_interval.py` (``plot_regression_interval.py``) | 00:00.121 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_study_save_load.py` (``plot_study_save_load.py``) | 00:00.017 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_study_save_load.py` (``plot_study_save_load.py``) | 00:00.011 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_random_generator.py` (``plot_random_generator.py``) | 00:00.002 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_random_generator.py` (``plot_random_generator.py``) | 00:00.001 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_combinatorial_generator.py` (``plot_combinatorial_generator.py``) | 00:00.002 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_combinatorial_generator.py` (``plot_combinatorial_generator.py``) | 00:00.001 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt b/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt index 6773a43880a..f21fd1503e2 100644 --- a/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt @@ -6,12 +6,12 @@ Computation times ================= -**00:00.660** total execution time for **auto_numerical_methods_iterative_statistics** files: +**00:00.597** total execution time for **auto_numerical_methods_iterative_statistics** files: +---------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_threshold.py` (``plot_iterative_threshold.py``) | 00:00.325 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_threshold.py` (``plot_iterative_threshold.py``) | 00:00.283 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_extrema.py` (``plot_iterative_extrema.py``) | 00:00.175 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_extrema.py` (``plot_iterative_extrema.py``) | 00:00.169 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_moments.py` (``plot_iterative_moments.py``) | 00:00.161 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_moments.py` (``plot_iterative_moments.py``) | 00:00.145 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt index 17158286d39..715b369fae6 100644 --- a/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt @@ -210,8 +210,8 @@ Run algorithm .. code-block:: none - event probability: 0.13861892583120186 - calls number: 4012 + event probability: 0.13696289062499983 + calls number: 4198 diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt index bc50609af53..14871379570 100644 --- a/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt @@ -840,7 +840,7 @@ We run the algorithm and get the result: .. raw:: html
-

[0.124444,0.80361]

+

[0.124447,0.803615]



@@ -974,7 +974,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 5.440 seconds) + **Total running time of the script:** (0 minutes 4.373 seconds) .. _sphx_glr_download_auto_numerical_methods_optimization_plot_ego.py: diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt index d325a8990ed..1eba745819b 100644 --- a/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt @@ -450,13 +450,13 @@ Retrieve results .. code-block:: none - x^ = [2.93021,1.2558,0.5] - f(x^) = [1.37065e-28] + x^ = [2.91097,1.24756,0.5] + f(x^) = [6.9333e-27] Iteration number: 7 Evaluation number: 8 - Absolute error: 7.707841723483876e-08 - Relative error: 2.3885914480431554e-08 - Residual error: 4.883407439497667e-15 + Absolute error: 2.2067399087641009e-07 + Relative error: 6.88257483209177e-08 + Residual error: 2.967481551719896e-14 Constraint error: 0.0 diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt index 47999f5bf1a..4457c8b66ec 100644 --- a/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt @@ -6,28 +6,28 @@ Computation times ================= -**00:08.112** total execution time for **auto_numerical_methods_optimization** files: +**00:06.662** total execution time for **auto_numerical_methods_optimization** files: +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_ego.py` (``plot_ego.py``) | 00:05.440 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_ego.py` (``plot_ego.py``) | 00:04.373 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rastrigin.py` (``plot_optimization_rastrigin.py``) | 00:01.109 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rastrigin.py` (``plot_optimization_rastrigin.py``) | 00:00.954 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rosenbrock.py` (``plot_optimization_rosenbrock.py``) | 00:00.691 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rosenbrock.py` (``plot_optimization_rosenbrock.py``) | 00:00.601 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_dlib.py` (``plot_optimization_dlib.py``) | 00:00.439 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_dlib.py` (``plot_optimization_dlib.py``) | 00:00.357 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_pagmo.py` (``plot_optimization_pagmo.py``) | 00:00.186 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_pagmo.py` (``plot_optimization_pagmo.py``) | 00:00.161 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_constraints.py` (``plot_optimization_constraints.py``) | 00:00.090 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_constraints.py` (``plot_optimization_constraints.py``) | 00:00.068 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_nlopt.py` (``plot_optimization_nlopt.py``) | 00:00.072 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_nlopt.py` (``plot_optimization_nlopt.py``) | 00:00.067 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_bonmin.py` (``plot_optimization_bonmin.py``) | 00:00.062 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_bonmin.py` (``plot_optimization_bonmin.py``) | 00:00.058 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_control_termination.py` (``plot_control_termination.py``) | 00:00.015 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_control_termination.py` (``plot_control_termination.py``) | 00:00.014 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_minmax_optimization.py` (``plot_minmax_optimization.py``) | 00:00.004 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_minmax_by_random_design.py` (``plot_minmax_by_random_design.py``) | 00:00.004 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_minmax_by_random_design.py` (``plot_minmax_by_random_design.py``) | 00:00.003 | 0.0 MB | +| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_minmax_optimization.py` (``plot_minmax_optimization.py``) | 00:00.004 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt index ebd7a11e711..ff7e53f630c 100644 --- a/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt @@ -6,10 +6,10 @@ Computation times ================= -**00:00.411** total execution time for **auto_probabilistic_modeling_copulas** files: +**00:00.407** total execution time for **auto_probabilistic_modeling_copulas** files: +-----------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_ordinal_sum_copula.py` (``plot_ordinal_sum_copula.py``) | 00:00.408 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_ordinal_sum_copula.py` (``plot_ordinal_sum_copula.py``) | 00:00.403 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_extract_copula.py` (``plot_extract_copula.py``) | 00:00.001 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt index 2ff51576220..08057a7facb 100644 --- a/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt @@ -6,44 +6,44 @@ Computation times ================= -**00:06.259** total execution time for **auto_probabilistic_modeling_distributions** files: +**00:06.309** total execution time for **auto_probabilistic_modeling_distributions** files: +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_quick_start_guide_distributions.py` (``plot_quick_start_guide_distributions.py``) | 00:00.914 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_draw_multivariate_distributions.py` (``plot_create_draw_multivariate_distributions.py``) | 00:00.906 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_draw_multivariate_distributions.py` (``plot_create_draw_multivariate_distributions.py``) | 00:00.859 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_quick_start_guide_distributions.py` (``plot_quick_start_guide_distributions.py``) | 00:00.890 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_minimum_volume_level_sets.py` (``plot_minimum_volume_level_sets.py``) | 00:00.645 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_transformation.py` (``plot_distribution_transformation.py``) | 00:00.643 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_transformation.py` (``plot_distribution_transformation.py``) | 00:00.634 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_minimum_volume_level_sets.py` (``plot_minimum_volume_level_sets.py``) | 00:00.642 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_order_statistics_distribution.py` (``plot_order_statistics_distribution.py``) | 00:00.511 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_order_statistics_distribution.py` (``plot_order_statistics_distribution.py``) | 00:00.533 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_truncated_distribution.py` (``plot_truncated_distribution.py``) | 00:00.390 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_truncated_distribution.py` (``plot_truncated_distribution.py``) | 00:00.391 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_overview_univariate_distributions.py` (``plot_overview_univariate_distributions.py``) | 00:00.379 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_overview_univariate_distributions.py` (``plot_overview_univariate_distributions.py``) | 00:00.383 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_manipulation.py` (``plot_distribution_manipulation.py``) | 00:00.296 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_manipulation.py` (``plot_distribution_manipulation.py``) | 00:00.299 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_extreme_value_distribution.py` (``plot_create_extreme_value_distribution.py``) | 00:00.272 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_extreme_value_distribution.py` (``plot_create_extreme_value_distribution.py``) | 00:00.256 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_and_draw_scalar_distributions.py` (``plot_create_and_draw_scalar_distributions.py``) | 00:00.253 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_random_mixture.py` (``plot_create_random_mixture.py``) | 00:00.241 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_random_mixture.py` (``plot_create_random_mixture.py``) | 00:00.242 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_and_draw_scalar_distributions.py` (``plot_create_and_draw_scalar_distributions.py``) | 00:00.240 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_bayes_distribution.py` (``plot_bayes_distribution.py``) | 00:00.193 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_bayes_distribution.py` (``plot_bayes_distribution.py``) | 00:00.199 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_mixture_distribution.py` (``plot_mixture_distribution.py``) | 00:00.187 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_mixture_distribution.py` (``plot_mixture_distribution.py``) | 00:00.179 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_generate_by_inversion.py` (``plot_generate_by_inversion.py``) | 00:00.161 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_generate_by_inversion.py` (``plot_generate_by_inversion.py``) | 00:00.163 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_python_distribution.py` (``plot_python_distribution.py``) | 00:00.106 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_conditional_distribution.py` (``plot_conditional_distribution.py``) | 00:00.115 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_conditional_distribution.py` (``plot_conditional_distribution.py``) | 00:00.090 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_python_distribution.py` (``plot_python_distribution.py``) | 00:00.100 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_your_own_dist.py` (``plot_create_your_own_dist.py``) | 00:00.063 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_your_own_dist.py` (``plot_create_your_own_dist.py``) | 00:00.070 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_maximum_distribution.py` (``plot_maximum_distribution.py``) | 00:00.059 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_maximum_distribution.py` (``plot_maximum_distribution.py``) | 00:00.056 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_conditional_random_vector.py` (``plot_conditional_random_vector.py``) | 00:00.001 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt index 8fa19099b91..a786dfc642a 100644 --- a/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt @@ -6,7 +6,7 @@ Computation times ================= -**00:00.006** total execution time for **auto_probabilistic_modeling_random_vectors** files: +**00:00.005** total execution time for **auto_probabilistic_modeling_random_vectors** files: +----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_probabilistic_modeling_random_vectors_plot_random_vector_manipulation.py` (``plot_random_vector_manipulation.py``) | 00:00.002 | 0.0 MB | diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt index 250ab535011..a3e7e2a4ef7 100644 --- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt +++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt @@ -386,11 +386,6 @@ Display figures -.. rst-class:: sphx-glr-timing - - **Total running time of the script:** (0 minutes 2.085 seconds) - - .. _sphx_glr_download_auto_probabilistic_modeling_stochastic_processes_plot_create_mesh.py: .. only:: html diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt index 6265b1e715e..d39fe92d6a5 100644 --- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt +++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt @@ -228,7 +228,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 2.174 seconds) + **Total running time of the script:** (0 minutes 2.290 seconds) .. _sphx_glr_download_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_process_covariance_hmat.py: diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt index 131795ec922..7d81001cb04 100644 --- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt +++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt @@ -157,7 +157,7 @@ Draw the covariance model .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 2.111 seconds) + **Total running time of the script:** (0 minutes 2.358 seconds) .. _sphx_glr_download_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_covariance_model.py: diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt index 0836a6839df..651a160fd82 100644 --- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt @@ -6,52 +6,52 @@ Computation times ================= -**00:12.578** total execution time for **auto_probabilistic_modeling_stochastic_processes** files: +**00:12.453** total execution time for **auto_probabilistic_modeling_stochastic_processes** files: +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_process_covariance_hmat.py` (``plot_gaussian_process_covariance_hmat.py``) | 00:02.174 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_covariance_model.py` (``plot_userdefined_covariance_model.py``) | 00:02.358 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_covariance_model.py` (``plot_userdefined_covariance_model.py``) | 00:02.111 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_process_covariance_hmat.py` (``plot_gaussian_process_covariance_hmat.py``) | 00:02.290 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_mesh.py` (``plot_create_mesh.py``) | 00:02.085 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_mesh.py` (``plot_create_mesh.py``) | 00:01.914 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_field_manipulation.py` (``plot_field_manipulation.py``) | 00:01.696 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_field_manipulation.py` (``plot_field_manipulation.py``) | 00:01.575 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_box_cox_transform.py` (``plot_box_cox_transform.py``) | 00:00.965 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_box_cox_transform.py` (``plot_box_cox_transform.py``) | 00:00.921 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_processes_comparison.py` (``plot_gaussian_processes_comparison.py``) | 00:00.713 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_processes_comparison.py` (``plot_gaussian_processes_comparison.py``) | 00:00.663 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_process_manipulation.py` (``plot_process_manipulation.py``) | 00:00.450 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_process_manipulation.py` (``plot_process_manipulation.py``) | 00:00.416 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_random_walk_process.py` (``plot_random_walk_process.py``) | 00:00.302 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_random_walk_process.py` (``plot_random_walk_process.py``) | 00:00.281 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_and_manipulate_arma_process.py` (``plot_create_and_manipulate_arma_process.py``) | 00:00.282 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_and_manipulate_arma_process.py` (``plot_create_and_manipulate_arma_process.py``) | 00:00.263 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_discrete_markov_chain_process.py` (``plot_discrete_markov_chain_process.py``) | 00:00.268 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_discrete_markov_chain_process.py` (``plot_discrete_markov_chain_process.py``) | 00:00.256 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_kronecker_covmodel.py` (``plot_kronecker_covmodel.py``) | 00:00.262 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_kronecker_covmodel.py` (``plot_kronecker_covmodel.py``) | 00:00.251 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_mix_rv_process.py` (``plot_mix_rv_process.py``) | 00:00.159 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_white_noise_process.py` (``plot_white_noise_process.py``) | 00:00.172 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_white_noise_process.py` (``plot_white_noise_process.py``) | 00:00.155 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_mix_rv_process.py` (``plot_mix_rv_process.py``) | 00:00.156 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_export_field_vtk.py` (``plot_export_field_vtk.py``) | 00:00.136 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_export_field_vtk.py` (``plot_export_field_vtk.py``) | 00:00.139 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_add_trend.py` (``plot_add_trend.py``) | 00:00.133 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_add_trend.py` (``plot_add_trend.py``) | 00:00.135 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_normal_process.py` (``plot_create_normal_process.py``) | 00:00.131 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_normal_process.py` (``plot_create_normal_process.py``) | 00:00.123 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_trend_transform.py` (``plot_trend_transform.py``) | 00:00.124 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_aggregated_process.py` (``plot_aggregated_process.py``) | 00:00.119 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_timeseries_manipulation.py` (``plot_timeseries_manipulation.py``) | 00:00.114 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_trend_transform.py` (``plot_trend_transform.py``) | 00:00.118 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_aggregated_process.py` (``plot_aggregated_process.py``) | 00:00.113 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_timeseries_manipulation.py` (``plot_timeseries_manipulation.py``) | 00:00.108 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_functional_basis_process.py` (``plot_functional_basis_process.py``) | 00:00.071 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_user_stationary_covmodel.py` (``plot_user_stationary_covmodel.py``) | 00:00.067 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_user_stationary_covmodel.py` (``plot_user_stationary_covmodel.py``) | 00:00.063 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_spectral_model.py` (``plot_userdefined_spectral_model.py``) | 00:00.062 | 0.0 MB | +| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_spectral_model.py` (``plot_userdefined_spectral_model.py``) | 00:00.058 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_stationary_covmodel.py` (``plot_create_stationary_covmodel.py``) | 00:00.001 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt index b48033b926b..c493c0af3b0 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt @@ -6,12 +6,12 @@ Computation times ================= -**00:00.637** total execution time for **auto_reliability_sensitivity_central_dispersion** files: +**00:00.575** total execution time for **auto_reliability_sensitivity_central_dispersion** files: +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_expectation_simulation_algorithm.py` (``plot_expectation_simulation_algorithm.py``) | 00:00.457 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_expectation_simulation_algorithm.py` (``plot_expectation_simulation_algorithm.py``) | 00:00.409 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_central_tendency.py` (``plot_central_tendency.py``) | 00:00.132 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_central_tendency.py` (``plot_central_tendency.py``) | 00:00.120 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_estimate_moments_taylor.py` (``plot_estimate_moments_taylor.py``) | 00:00.048 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_estimate_moments_taylor.py` (``plot_estimate_moments_taylor.py``) | 00:00.046 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt index 75881c044f5..89ede84c820 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt @@ -294,7 +294,7 @@ This growth depends on the dimension of the problem. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 2.363 seconds) + **Total running time of the script:** (0 minutes 2.121 seconds) .. _sphx_glr_download_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_experiment.py: diff --git a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt index b0c0d7c0f47..83a9a2910f5 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt @@ -584,7 +584,7 @@ We can finally create the graph. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 8.200 seconds) + **Total running time of the script:** (0 minutes 7.491 seconds) .. _sphx_glr_download_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_quadrature.py: diff --git a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt index c00f7b6c8ed..620f960c098 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt @@ -6,40 +6,40 @@ Computation times ================= -**00:16.844** total execution time for **auto_reliability_sensitivity_design_of_experiments** files: +**00:14.690** total execution time for **auto_reliability_sensitivity_design_of_experiments** files: +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_quadrature.py` (``plot_smolyak_quadrature.py``) | 00:08.200 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_quadrature.py` (``plot_smolyak_quadrature.py``) | 00:07.491 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_experiment.py` (``plot_smolyak_experiment.py``) | 00:02.363 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_experiment.py` (``plot_smolyak_experiment.py``) | 00:02.121 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_plot_design.py` (``plot_plot_design.py``) | 00:01.492 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_plot_design.py` (``plot_plot_design.py``) | 00:01.239 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiments.py` (``plot_design_of_experiments.py``) | 00:01.291 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiments.py` (``plot_design_of_experiments.py``) | 00:01.032 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_low_discrepancy_sequence.py` (``plot_low_discrepancy_sequence.py``) | 00:00.638 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_low_discrepancy_sequence.py` (``plot_low_discrepancy_sequence.py``) | 00:00.545 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_merge.py` (``plot_smolyak_merge.py``) | 00:00.551 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_optimal_lhs.py` (``plot_optimal_lhs.py``) | 00:00.466 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_deterministic_doe.py` (``plot_create_deterministic_doe.py``) | 00:00.490 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_merge.py` (``plot_smolyak_merge.py``) | 00:00.451 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_optimal_lhs.py` (``plot_optimal_lhs.py``) | 00:00.487 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_deterministic_doe.py` (``plot_create_deterministic_doe.py``) | 00:00.276 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_deterministic_design.py` (``plot_deterministic_design.py``) | 00:00.402 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_deterministic_design.py` (``plot_deterministic_design.py``) | 00:00.268 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_indices.py` (``plot_smolyak_indices.py``) | 00:00.273 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_indices.py` (``plot_smolyak_indices.py``) | 00:00.230 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_mixed_design.py` (``plot_mixed_design.py``) | 00:00.148 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_mixed_design.py` (``plot_mixed_design.py``) | 00:00.129 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_random_doe.py` (``plot_create_random_doe.py``) | 00:00.145 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiment_continuous_discrete.py` (``plot_design_of_experiment_continuous_discrete.py``) | 00:00.114 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiment_continuous_discrete.py` (``plot_design_of_experiment_continuous_discrete.py``) | 00:00.136 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_random_doe.py` (``plot_create_random_doe.py``) | 00:00.110 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_gauss_product_experiment.py` (``plot_gauss_product_experiment.py``) | 00:00.059 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_gauss_product_experiment.py` (``plot_gauss_product_experiment.py``) | 00:00.063 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_probabilistic_design.py` (``plot_probabilistic_design.py``) | 00:00.059 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_probabilistic_design.py` (``plot_probabilistic_design.py``) | 00:00.054 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_composite_experiment.py` (``plot_composite_experiment.py``) | 00:00.058 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_composite_experiment.py` (``plot_composite_experiment.py``) | 00:00.051 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_monte_carlo_experiment.py` (``plot_monte_carlo_experiment.py``) | 00:00.051 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_monte_carlo_experiment.py` (``plot_monte_carlo_experiment.py``) | 00:00.049 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt index d54b8cbdf9b..5e92d12c0e7 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt @@ -216,11 +216,6 @@ Retrieve results. -.. rst-class:: sphx-glr-timing - - **Total running time of the script:** (0 minutes 2.260 seconds) - - .. _sphx_glr_download_auto_reliability_sensitivity_reliability_plot_estimate_probability_adaptive_directional_sampling.py: .. only:: html diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt index eb3189bbedd..83138cca122 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt @@ -725,7 +725,7 @@ We can see that this post-treatment of FORM result allows one to greatly improve .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 6.354 seconds) + **Total running time of the script:** (0 minutes 5.253 seconds) .. _sphx_glr_download_auto_reliability_sensitivity_reliability_plot_estimate_probability_form_oscillator.py: diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt index 84aad1090a7..f177d3e6009 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt @@ -385,11 +385,6 @@ Draw the graphs! -.. rst-class:: sphx-glr-timing - - **Total running time of the script:** (0 minutes 2.186 seconds) - - .. _sphx_glr_download_auto_reliability_sensitivity_reliability_plot_proba_system_event.py: .. only:: html diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt index a9a746c81da..7ce42af24db 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt @@ -6,56 +6,56 @@ Computation times ================= -**00:20.729** total execution time for **auto_reliability_sensitivity_reliability** files: +**00:17.161** total execution time for **auto_reliability_sensitivity_reliability** files: -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form_oscillator.py` (``plot_estimate_probability_form_oscillator.py``) | 00:06.354 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_adaptive_directional_sampling.py` (``plot_estimate_probability_adaptive_directional_sampling.py``) | 00:02.260 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_proba_system_event.py` (``plot_proba_system_event.py``) | 00:02.186 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_crossentropy.py` (``plot_crossentropy.py``) | 00:01.754 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_form_explained.py` (``plot_form_explained.py``) | 00:01.073 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_randomized_qmc.py` (``plot_estimate_probability_randomized_qmc.py``) | 00:01.029 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_subset_sampling.py` (``plot_subset_sampling.py``) | 00:00.799 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_domain_event.py` (``plot_create_domain_event.py``) | 00:00.742 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_event_system.py` (``plot_event_system.py``) | 00:00.737 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_directional_sampling.py` (``plot_estimate_probability_directional_sampling.py``) | 00:00.639 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam.py` (``plot_axial_stressed_beam.py``) | 00:00.611 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_multi_form.py` (``plot_multi_form.py``) | 00:00.587 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_nais.py` (``plot_nais.py``) | 00:00.531 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form.py` (``plot_estimate_probability_form.py``) | 00:00.413 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam_quickstart.py` (``plot_axial_stressed_beam_quickstart.py``) | 00:00.401 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_importance_sampling.py` (``plot_estimate_probability_importance_sampling.py``) | 00:00.170 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_results.py` (``plot_probability_simulation_results.py``) | 00:00.149 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_threshold_event.py` (``plot_create_threshold_event.py``) | 00:00.086 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_flood_model.py` (``plot_flood_model.py``) | 00:00.059 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_lhs.py` (``plot_estimate_probability_lhs.py``) | 00:00.047 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_monte_carlo.py` (``plot_estimate_probability_monte_carlo.py``) | 00:00.045 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_parametrization.py` (``plot_probability_simulation_parametrization.py``) | 00:00.042 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_strong_maximum_test.py` (``plot_strong_maximum_test.py``) | 00:00.005 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_post_analytical_importance_sampling.py` (``plot_post_analytical_importance_sampling.py``) | 00:00.005 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_event_manipulation.py` (``plot_event_manipulation.py``) | 00:00.002 | 0.0 MB | -+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form_oscillator.py` (``plot_estimate_probability_form_oscillator.py``) | 00:05.253 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_adaptive_directional_sampling.py` (``plot_estimate_probability_adaptive_directional_sampling.py``) | 00:01.1000 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_proba_system_event.py` (``plot_proba_system_event.py``) | 00:01.719 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_crossentropy.py` (``plot_crossentropy.py``) | 00:01.443 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_randomized_qmc.py` (``plot_estimate_probability_randomized_qmc.py``) | 00:00.880 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_form_explained.py` (``plot_form_explained.py``) | 00:00.776 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_subset_sampling.py` (``plot_subset_sampling.py``) | 00:00.702 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_event_system.py` (``plot_event_system.py``) | 00:00.616 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_domain_event.py` (``plot_create_domain_event.py``) | 00:00.595 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_directional_sampling.py` (``plot_estimate_probability_directional_sampling.py``) | 00:00.593 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam.py` (``plot_axial_stressed_beam.py``) | 00:00.488 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_multi_form.py` (``plot_multi_form.py``) | 00:00.456 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_nais.py` (``plot_nais.py``) | 00:00.417 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam_quickstart.py` (``plot_axial_stressed_beam_quickstart.py``) | 00:00.354 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form.py` (``plot_estimate_probability_form.py``) | 00:00.339 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_importance_sampling.py` (``plot_estimate_probability_importance_sampling.py``) | 00:00.140 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_results.py` (``plot_probability_simulation_results.py``) | 00:00.133 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_threshold_event.py` (``plot_create_threshold_event.py``) | 00:00.077 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_flood_model.py` (``plot_flood_model.py``) | 00:00.048 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_monte_carlo.py` (``plot_estimate_probability_monte_carlo.py``) | 00:00.042 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_parametrization.py` (``plot_probability_simulation_parametrization.py``) | 00:00.040 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_lhs.py` (``plot_estimate_probability_lhs.py``) | 00:00.039 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_strong_maximum_test.py` (``plot_strong_maximum_test.py``) | 00:00.005 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_post_analytical_importance_sampling.py` (``plot_post_analytical_importance_sampling.py``) | 00:00.005 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_event_manipulation.py` (``plot_event_manipulation.py``) | 00:00.002 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+ diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt index d0ff36e1a2d..56da763dc16 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt @@ -521,7 +521,7 @@ Reset default settings .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 7.239 seconds) + **Total running time of the script:** (0 minutes 6.680 seconds) .. _sphx_glr_download_auto_reliability_sensitivity_reliability_processes_plot_field_fca_sobol.py: diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt index 9fcdd341cc1..e5f550bb943 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt @@ -6,12 +6,12 @@ Computation times ================= -**00:07.427** total execution time for **auto_reliability_sensitivity_reliability_processes** files: +**00:06.882** total execution time for **auto_reliability_sensitivity_reliability_processes** files: +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_field_fca_sobol.py` (``plot_field_fca_sobol.py``) | 00:07.239 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_field_fca_sobol.py` (``plot_field_fca_sobol.py``) | 00:06.680 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_estimate_probability_monte_carlo_process.py` (``plot_estimate_probability_monte_carlo_process.py``) | 00:00.186 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_estimate_probability_monte_carlo_process.py` (``plot_estimate_probability_monte_carlo_process.py``) | 00:00.200 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_event_process.py` (``plot_event_process.py``) | 00:00.002 | 0.0 MB | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt index c483ef50d26..ea064a1a72f 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt @@ -1188,7 +1188,7 @@ We can also see that the asymptotic p-values and p-values estimated by permutati .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 6.602 seconds) + **Total running time of the script:** (0 minutes 5.657 seconds) .. _sphx_glr_download_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_wingweight.py: diff --git a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt index 7ace3e881d2..0b1eb738047 100644 --- a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt +++ b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt @@ -6,22 +6,22 @@ Computation times ================= -**00:10.187** total execution time for **auto_reliability_sensitivity_sensitivity_analysis** files: +**00:08.704** total execution time for **auto_reliability_sensitivity_sensitivity_analysis** files: +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_wingweight.py` (``plot_sensitivity_wingweight.py``) | 00:06.602 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_wingweight.py` (``plot_sensitivity_wingweight.py``) | 00:05.657 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_functional_chaos_sensitivity.py` (``plot_functional_chaos_sensitivity.py``) | 00:01.029 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_functional_chaos_sensitivity.py` (``plot_functional_chaos_sensitivity.py``) | 00:00.886 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_hsic_estimators_ishigami.py` (``plot_hsic_estimators_ishigami.py``) | 00:00.962 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_par_coo.py` (``plot_sensitivity_par_coo.py``) | 00:00.735 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_par_coo.py` (``plot_sensitivity_par_coo.py``) | 00:00.826 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_hsic_estimators_ishigami.py` (``plot_hsic_estimators_ishigami.py``) | 00:00.693 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol.py` (``plot_sensitivity_sobol.py``) | 00:00.453 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol.py` (``plot_sensitivity_sobol.py``) | 00:00.447 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_ancova.py` (``plot_sensitivity_ancova.py``) | 00:00.124 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_ancova.py` (``plot_sensitivity_ancova.py``) | 00:00.115 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol_multivariate.py` (``plot_sensitivity_sobol_multivariate.py``) | 00:00.108 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol_multivariate.py` (``plot_sensitivity_sobol_multivariate.py``) | 00:00.094 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_fast.py` (``plot_sensitivity_fast.py``) | 00:00.084 | 0.0 MB | +| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_fast.py` (``plot_sensitivity_fast.py``) | 00:00.077 | 0.0 MB | +-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/openturns/master/_sources/user_manual/response_surface/_generated/openturns.LARS.rst.txt b/openturns/master/_sources/user_manual/response_surface/_generated/openturns.LARS.rst.txt index bdad73685e8..dfb9b5c0a05 100644 --- a/openturns/master/_sources/user_manual/response_surface/_generated/openturns.LARS.rst.txt +++ b/openturns/master/_sources/user_manual/response_surface/_generated/openturns.LARS.rst.txt @@ -1,6 +1,9 @@ ο»ΏLARS ============== +.. plot:: pyplots/LARS.py + :include-source: False + .. currentmodule:: openturns .. autoclass:: LARS @@ -9,6 +12,5 @@ .. automethod:: __init__ - .. minigallery:: openturns.LARS :add-heading: Examples using the class \ No newline at end of file diff --git a/openturns/master/_sources/user_manual/response_surface/functional_chaos_expansion.rst.txt b/openturns/master/_sources/user_manual/response_surface/functional_chaos_expansion.rst.txt index 0cfdda3bdf6..7f9ac4fc273 100644 --- a/openturns/master/_sources/user_manual/response_surface/functional_chaos_expansion.rst.txt +++ b/openturns/master/_sources/user_manual/response_surface/functional_chaos_expansion.rst.txt @@ -42,7 +42,11 @@ Computation of the polynomial chaos coefficients LeastSquaresMetaModelSelectionFactory LeastSquaresMetaModelSelection BasisSequenceFactory + + :template: classWithPlot.rst_t LARS + + :template: class.rst_t FittingAlgorithm CorrectedLeaveOneOut KFold diff --git a/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html b/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html index 4bc88e6601f..a0195327f49 100644 --- a/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html +++ b/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html @@ -245,7 +245,7 @@

Quick search

View.ShowAll() -Posterior density

Total running time of the script: (0 minutes 13.207 seconds)

+Posterior density

Total running time of the script: (0 minutes 12.594 seconds)

-Bayesian inference (with log-pdf)

Total running time of the script: (0 minutes 6.489 seconds)

+Bayesian inference (with log-pdf)

Total running time of the script: (0 minutes 5.746 seconds)