Skip to content

Commit

Permalink
Fix for single valued columns in LinePlotterFMU (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Sep 1, 2021
1 parent b12c3d1 commit 64ec605
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#717](https://github.com/equinor/webviz-subsurface/pull/717) - Keep zoom state in `ReservoirSimulationTimeseries` (inc `Regional` and `OneByOne`) and `RelativePermeability` plugins using `uirevision`.
- [#707](https://github.com/equinor/webviz-subsurface/pull/707) - Generalized and improved some plot functions in `PropertyStatistics`, `ParameterAnalysis` and `VolumetricAnalysis`. Replaced histogram with distribution plot in `PropertyStatistics`.

### Fixed
- [#749](https://github.com/equinor/webviz-subsurface/pull/749) - `LinePlotterFMU` check function for `x` axis value alignment across realizations now supports single valued columns.


## [0.2.4] - 2021-07-13

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def _update_statistics_options(
realizations = list(ens_df["REAL"].unique())
equal_x = all(
(
all(
np.all(
ens_df.loc[ens_df["REAL"] == real][x_column_name].values
== ens_df.loc[ens_df["REAL"] == realizations[0]][
x_column_name
Expand Down

0 comments on commit 64ec605

Please sign in to comment.