-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
CircleCI
committed
Apr 26, 2024
1 parent
6ab9f87
commit fe87347
Showing
485 changed files
with
4,784 additions
and
3,131 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip
Binary file not shown.
Binary file modified
BIN
+144 Bytes
(100%)
...ns/master/_downloads/2b22d8564f31bacccd7439709c22fb26/monte_carlo_moments-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
...s/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip
Binary file not shown.
176 changes: 176 additions & 0 deletions
176
...urns/master/_downloads/3a76cbe9f372eb9e6634c1a8f6ee07ed/plot_sensitivity_rank_sobol.ipynb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"\n# Sobol' sensitivity indices using rank-based algorithm\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"import openturns as ot\nimport openturns.experimental as otexp\nimport openturns.viewer as viewer\nfrom openturns.usecases import ishigami_function" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"In this example we are going to compute global sensitivity indices in a data driven framework.\nFor that purpose, we are using the rank-based algorithm which provides the first order Sobol' indices.\nWe present the method on the `Ishigami function<use-case-ishigami>`.\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"ot.Log.Show(ot.Log.NONE)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"## Definition of the model\n\nWe load the model from the usecases module.\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"im = ishigami_function.IshigamiModel()" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"We generate an input sample of size 500 (and dimension 3).\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"size = 500\not.RandomGenerator.SetSeed(10)\nX = im.distributionX.getSample(size)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"We compute the output by applying the Ishigami model to the input sample.\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"Y = im.model(X)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"Estimate Sobol' first order indices via rank-based algorithm.\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"mySobol = otexp.RankSobolSensitivityAlgorithm(X, Y)\nindices = mySobol.getFirstOrderIndices()\nprint('First order indices:', indices)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"Draw Sobol' indices.\n\nOptions for confidence interval estimation can be defined.\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"ot.ResourceMap.SetAsUnsignedInteger('SobolIndicesAlgorithm-DefaultBootstrapSize', 200)\not.ResourceMap.SetAsScalar('RankSobolSensitivityAlgorithm-DefaultBootstrapSampleRatio', 0.85)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"if SobolIndicesAlgorithm-DefaultBootstrapSize > 1, the draw() method will call bootstrap method to compute the confidence intervals.\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"graph = mySobol.draw()\ngraph.setTitle(\"Sobol' indices\")\nview = viewer.View(graph)\n\nprint('confidence intervals:', mySobol.getFirstOrderIndicesInterval())" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"It is possible that Sobol' indices estimates take negative values, that is inconsistent with the theory. Therefore, a larger number of samples is required to get consistent indices.\n\n" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.11.8" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 0 | ||
} |
Binary file modified
BIN
+407 Bytes
(100%)
...urns/master/_downloads/440c80b5f4d4be6291ed83d9fc9e5c78/design_experiment-6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
...ns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+828 Bytes
(100%)
openturns/master/_downloads/5df5f8c8966c7060dba713e4632d832c/sphere_sampling-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
...aster/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...rns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip
Binary file not shown.
Binary file modified
BIN
-62 Bytes
(100%)
...s/master/_downloads/78420b783784f3c25a3451d80510adba/use_case_flood_model-8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+624 Bytes
(100%)
...s/master/_downloads/7a9f28a357d893d704ab66b4d92cb483/use_case_flood_model-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+459 Bytes
(100%)
...urns/master/_downloads/9e35ad04201351ddad988f3c720876b8/design_experiment-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.8 KB
(100%)
...ster/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip
Binary file not shown.
Binary file modified
BIN
+181 Bytes
(100%)
...s/master/_downloads/a694132229a9d426f3bc04ee9dcd75d1/use_case_flood_model-6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.8 KB
(100%)
...aster/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip
Binary file not shown.
Binary file modified
BIN
+4.15 KB
(100%)
..._downloads/ab225a4bdc4d3304242287ecab8a0eb3/openturns-DiscreteMarkovChain-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip
Binary file not shown.
Binary file modified
BIN
+381 Bytes
(100%)
...s/master/_downloads/b2f5c18233c0f33ecf3d17aeb84efc9c/use_case_flood_model-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
...master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip
Binary file not shown.
Binary file modified
BIN
+30 Bytes
(100%)
...s/master/_downloads/c6815aaa6defd6dbc8f11cf81d74689e/use_case_flood_model-7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+510 Bytes
(100%)
...master/_downloads/da28bf730b878a7a4dcb88b0d8d084f3/monte_carlo_simulation-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
...urns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip
Binary file not shown.
58 changes: 58 additions & 0 deletions
58
openturns/master/_downloads/fb2afce0346a87308e38e6b4d9b7197d/plot_sensitivity_rank_sobol.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
""" | ||
Sobol' sensitivity indices using rank-based algorithm | ||
===================================================== | ||
""" | ||
|
||
import openturns as ot | ||
import openturns.experimental as otexp | ||
import openturns.viewer as viewer | ||
from openturns.usecases import ishigami_function | ||
|
||
# %% | ||
# In this example we are going to compute global sensitivity indices in a data driven framework. | ||
# For that purpose, we are using the rank-based algorithm which provides the first order Sobol' indices. | ||
# We present the method on the :ref:`Ishigami function<use-case-ishigami>`. | ||
|
||
ot.Log.Show(ot.Log.NONE) | ||
|
||
# %% | ||
# Definition of the model | ||
# ----------------------- | ||
# | ||
# We load the model from the usecases module. | ||
im = ishigami_function.IshigamiModel() | ||
|
||
# %% | ||
# We generate an input sample of size 500 (and dimension 3). | ||
size = 500 | ||
ot.RandomGenerator.SetSeed(10) | ||
X = im.distributionX.getSample(size) | ||
|
||
# %% | ||
# We compute the output by applying the Ishigami model to the input sample. | ||
Y = im.model(X) | ||
|
||
# %% | ||
# Estimate Sobol' first order indices via rank-based algorithm. | ||
mySobol = otexp.RankSobolSensitivityAlgorithm(X, Y) | ||
indices = mySobol.getFirstOrderIndices() | ||
print('First order indices:', indices) | ||
|
||
# %% | ||
# Draw Sobol' indices. | ||
# | ||
# Options for confidence interval estimation can be defined. | ||
ot.ResourceMap.SetAsUnsignedInteger('SobolIndicesAlgorithm-DefaultBootstrapSize', 200) | ||
ot.ResourceMap.SetAsScalar('RankSobolSensitivityAlgorithm-DefaultBootstrapSampleRatio', 0.85) | ||
|
||
# %% | ||
# if SobolIndicesAlgorithm-DefaultBootstrapSize > 1, the draw() method will call bootstrap method to compute the confidence intervals. | ||
|
||
graph = mySobol.draw() | ||
graph.setTitle("Sobol' indices") | ||
view = viewer.View(graph) | ||
|
||
print('confidence intervals:', mySobol.getFirstOrderIndicesInterval()) | ||
|
||
# %% | ||
# It is possible that Sobol' indices estimates take negative values, that is inconsistent with the theory. Therefore, a larger number of samples is required to get consistent indices. |
Binary file modified
BIN
+0 Bytes
(100%)
openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+4.15 KB
(100%)
openturns/master/_images/openturns-DiscreteMarkovChain-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+96 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_008.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-130 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_009.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-249 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_011.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-340 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_012.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-67 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_013.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-4.8 KB
(97%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_014.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+28 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_021.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-26 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_022.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+46 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_023.png
Oops, something went wrong.
Binary file modified
BIN
+3.11 KB
(110%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_024.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_025.png
Oops, something went wrong.
Binary file modified
BIN
-3.21 KB
(98%)
openturns/master/_images/sphx_glr_plot_calibration_chaboche_026.png
Oops, something went wrong.
Binary file modified
BIN
+617 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_deflection_tube_001.png
Oops, something went wrong.
Binary file modified
BIN
+12.2 KB
(110%)
openturns/master/_images/sphx_glr_plot_calibration_deflection_tube_002.png
Oops, something went wrong.
Binary file modified
BIN
+4.67 KB
(110%)
openturns/master/_images/sphx_glr_plot_calibration_deflection_tube_003.png
Oops, something went wrong.
Binary file modified
BIN
+668 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_deflection_tube_004.png
Oops, something went wrong.
Binary file modified
BIN
-522 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_calibration_deflection_tube_005.png
Oops, something went wrong.
Binary file modified
BIN
-859 Bytes
(98%)
openturns/master/_images/sphx_glr_plot_calibration_deflection_tube_006.png
Oops, something went wrong.
Binary file modified
BIN
+8.61 KB
(110%)
openturns/master/_images/sphx_glr_plot_calibration_deflection_tube_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_002.png
Oops, something went wrong.
Binary file modified
BIN
+28 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_003.png
Oops, something went wrong.
Binary file modified
BIN
-96 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_004.png
Oops, something went wrong.
Binary file modified
BIN
+608 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_005.png
Oops, something went wrong.
Binary file modified
BIN
-607 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_006.png
Oops, something went wrong.
Binary file modified
BIN
-607 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_011.png
Oops, something went wrong.
Binary file modified
BIN
-105 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_014.png
Oops, something went wrong.
Binary file modified
BIN
-572 Bytes
(98%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_015.png
Oops, something went wrong.
Binary file modified
BIN
-607 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_016.png
Oops, something went wrong.
Binary file modified
BIN
-607 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_018.png
Oops, something went wrong.
Binary file modified
BIN
-208 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_calibration_flooding_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+19 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_quickstart_002.png
Oops, something went wrong.
Binary file modified
BIN
-706 Bytes
(98%)
openturns/master/_images/sphx_glr_plot_calibration_quickstart_003.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_calibration_quickstart_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-1.59 KB
(96%)
openturns/master/_images/sphx_glr_plot_calibration_withoutobservedinputs_001.png
Oops, something went wrong.
Binary file modified
BIN
-450 Bytes
(98%)
openturns/master/_images/sphx_glr_plot_calibration_withoutobservedinputs_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-1.73 KB
(87%)
openturns/master/_images/sphx_glr_plot_create_random_doe_001.png
Oops, something went wrong.
Binary file modified
BIN
-263 Bytes
(98%)
openturns/master/_images/sphx_glr_plot_create_random_doe_002.png
Oops, something went wrong.
Binary file modified
BIN
-2.7 KB
(82%)
openturns/master/_images/sphx_glr_plot_create_random_doe_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-412 Bytes
(97%)
...s/master/_images/sphx_glr_plot_design_of_experiment_continuous_discrete_001.png
Oops, something went wrong.
Binary file modified
BIN
+27 Bytes
(100%)
...s/master/_images/sphx_glr_plot_design_of_experiment_continuous_discrete_002.png
Oops, something went wrong.
Binary file modified
BIN
+598 Bytes
(100%)
...master/_images/sphx_glr_plot_design_of_experiment_continuous_discrete_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+208 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_design_of_experiments_001.png
Oops, something went wrong.
Binary file modified
BIN
+871 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_design_of_experiments_002.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_design_of_experiments_003.png
Oops, something went wrong.
Binary file modified
BIN
+50 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_design_of_experiments_004.png
Oops, something went wrong.
Binary file modified
BIN
+56 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_design_of_experiments_thumb.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+23 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_functional_chaos_sensitivity_001.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_functional_chaos_sensitivity_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-50 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_generate_chaboche_001.png
Oops, something went wrong.
Binary file modified
BIN
-256 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_generate_chaboche_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_generate_flooding_001.png
Oops, something went wrong.
Binary file modified
BIN
+55 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_generate_flooding_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+2.29 KB
(120%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_001.png
Oops, something went wrong.
Binary file modified
BIN
-431 Bytes
(97%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_002.png
Oops, something went wrong.
Binary file modified
BIN
+2.52 KB
(120%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_003.png
Oops, something went wrong.
Binary file modified
BIN
+2.96 KB
(120%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_004.png
Oops, something went wrong.
Binary file modified
BIN
-1.22 KB
(92%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_005.png
Oops, something went wrong.
Binary file modified
BIN
-1.36 KB
(92%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_006.png
Oops, something went wrong.
Binary file modified
BIN
+1.18 KB
(110%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_007.png
Oops, something went wrong.
Binary file modified
BIN
-1.93 KB
(89%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_008.png
Oops, something went wrong.
Binary file modified
BIN
-665 Bytes
(95%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_009.png
Oops, something went wrong.
Binary file modified
BIN
+1.06 KB
(110%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_010.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_011.png
Oops, something went wrong.
Binary file modified
BIN
+1.79 KB
(110%)
openturns/master/_images/sphx_glr_plot_hsic_estimators_ishigami_thumb.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-6.57 KB
(89%)
openturns/master/_images/sphx_glr_plot_logistic_growth_model_001.png
Oops, something went wrong.
Binary file modified
BIN
-3.94 KB
(89%)
openturns/master/_images/sphx_glr_plot_logistic_growth_model_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-292 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_low_discrepancy_sequence_007.png
Oops, something went wrong.
Binary file modified
BIN
-112 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_monte_carlo_experiment_001.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_monte_carlo_experiment_thumb.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+760 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_optimal_lhs_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+9 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+839 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_pce_design_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+685 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_plot_design_001.png
Oops, something went wrong.
Binary file modified
BIN
-48 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_plot_design_002.png
Oops, something went wrong.
Binary file modified
BIN
+723 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_plot_design_003.png
Oops, something went wrong.
Binary file modified
BIN
+761 Bytes
(110%)
openturns/master/_images/sphx_glr_plot_plot_design_004.png
Oops, something went wrong.
Binary file modified
BIN
-134 Bytes
(97%)
openturns/master/_images/sphx_glr_plot_plot_design_005.png
Oops, something went wrong.
Binary file modified
BIN
+762 Bytes
(110%)
openturns/master/_images/sphx_glr_plot_plot_design_006.png
Oops, something went wrong.
Binary file modified
BIN
+680 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_plot_design_007.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-155 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_plot_design_010.png
Oops, something went wrong.
Binary file modified
BIN
+699 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_plot_design_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+530 Bytes
(110%)
openturns/master/_images/sphx_glr_plot_probabilistic_design_001.png
Oops, something went wrong.
Binary file modified
BIN
+133 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_probabilistic_design_002.png
Oops, something went wrong.
Binary file modified
BIN
-761 Bytes
(97%)
openturns/master/_images/sphx_glr_plot_probabilistic_design_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+128 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_ancova_001.png
Oops, something went wrong.
Binary file modified
BIN
+136 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_ancova_002.png
Oops, something went wrong.
Binary file modified
BIN
-77 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_sensitivity_ancova_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-53 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_fast_001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_fast_002.png
Oops, something went wrong.
Binary file modified
BIN
+39 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_fast_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+10.7 KB
(110%)
openturns/master/_images/sphx_glr_plot_sensitivity_par_coo_001.png
Oops, something went wrong.
Binary file modified
BIN
+12.4 KB
(110%)
openturns/master/_images/sphx_glr_plot_sensitivity_par_coo_002.png
Oops, something went wrong.
Binary file modified
BIN
+6.17 KB
(110%)
openturns/master/_images/sphx_glr_plot_sensitivity_par_coo_thumb.png
Oops, something went wrong.
Binary file added
BIN
+15.8 KB
openturns/master/_images/sphx_glr_plot_sensitivity_rank_sobol_001.png
Oops, something went wrong.
Binary file added
BIN
+11.2 KB
openturns/master/_images/sphx_glr_plot_sensitivity_rank_sobol_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-310 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_sensitivity_sobol_001.png
Oops, something went wrong.
Binary file modified
BIN
-107 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_sensitivity_sobol_002.png
Oops, something went wrong.
Binary file modified
BIN
-28 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_sobol_003.png
Oops, something went wrong.
Binary file modified
BIN
-55 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_sobol_004.png
Oops, something went wrong.
Binary file modified
BIN
+217 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_sobol_multivariate_001.png
Oops, something went wrong.
Binary file modified
BIN
+68 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_sobol_multivariate_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-969 Bytes
(97%)
openturns/master/_images/sphx_glr_plot_sensitivity_sobol_thumb.png
Oops, something went wrong.
Binary file modified
BIN
-162 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_002.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_003.png
Oops, something went wrong.
Binary file modified
BIN
+58 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_004.png
Oops, something went wrong.
Binary file modified
BIN
+10 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_005.png
Oops, something went wrong.
Binary file modified
BIN
-91 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_006.png
Oops, something went wrong.
Binary file modified
BIN
-50 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_007.png
Oops, something went wrong.
Binary file modified
BIN
+91 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_008.png
Oops, something went wrong.
Binary file modified
BIN
+357 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_010.png
Oops, something went wrong.
Binary file modified
BIN
-118 Bytes
(100%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_011.png
Oops, something went wrong.
Binary file modified
BIN
+4.73 KB
(120%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_013.png
Oops, something went wrong.
Binary file modified
BIN
+1.85 KB
(110%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_014.png
Oops, something went wrong.
Binary file modified
BIN
-144 Bytes
(99%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_015.png
Oops, something went wrong.
Binary file modified
BIN
+2.42 KB
(110%)
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_016.png
Oops, something went wrong.
Binary file added
BIN
+20.9 KB
openturns/master/_images/sphx_glr_plot_sensitivity_wingweight_017.png
Oops, something went wrong.
Binary file modified
BIN
+5.59 KB
(110%)
openturns/master/_images/sphx_glr_plot_viscous_fall_field_function_001.png
Oops, something went wrong.
Binary file modified
BIN
-825 Bytes
(99%)
...rns/master/_images/sphx_glr_plot_viscous_fall_field_function_connection_001.png
Oops, something went wrong.
Binary file modified
BIN
-1.09 KB
(97%)
...s/master/_images/sphx_glr_plot_viscous_fall_field_function_connection_thumb.png
Oops, something went wrong.
Binary file modified
BIN
+2.15 KB
(110%)
openturns/master/_images/sphx_glr_plot_viscous_fall_field_function_thumb.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.