Skip to content

Commit 557d1cf

Browse files
Add percentiles to uncertainty table (#1247)
* Add percentiles to uncertainty table
1 parent 15ae10d commit 557d1cf

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Added
1010
- [#1244](https://github.com/equinor/webviz-subsurface/pull/1244) - New functionality in `VolumetricAnalysis` to compute facies fractions if `FACIES` is present in the volumetric table. Also added possibility to have labels on bar plots with user defined value format.
11+
- [#1247](https://github.com/equinor/webviz-subsurface/pull/1247) - Added P10/P90 to the Uncertainty table in `StructuralUncertainty`.
1112

1213

1314
## [0.2.22] - 2023-08-31

webviz_subsurface/plugins/_structural_uncertainty/controllers/uncertainty_table_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _update_uncertainty_table(
4949
for ensemble in ensembles:
5050
surfset = surface_set_models[ensemble]
5151
for surfacename in surface_names:
52-
for calculation in ["Mean", "Min", "Max"]:
52+
for calculation in ["Mean", "Min", "Max", "P10", "P90"]:
5353
surface = surfset.calculate_statistical_surface(
5454
name=surfacename,
5555
attribute=surface_attribute,

webviz_subsurface/plugins/_structural_uncertainty/views/dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def dialog_layout(
1010
dialog_id: str,
1111
title: str,
1212
children: List,
13-
size: str = "sm",
13+
size: str = "lg",
1414
) -> wcc.Dialog:
1515
return wcc.Dialog(
1616
# style={"marginTop": "20vh"},

0 commit comments

Comments
 (0)