Skip to content

Commit

Permalink
Plot absolute observation misfits
Browse files Browse the repository at this point in the history
  • Loading branch information
DanSava committed Nov 9, 2021
1 parent 495e6dd commit 906aaa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webviz_ert/controllers/observation_response_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _get_univariate_misfits_boxplots(
misfits_data = list()
for misfits in misfits_df:
plot = BoxPlotModel(
y_axis=misfits_df[misfits].values,
y_axis=misfits_df[misfits].abs().values,
name=f"{misfits}",
color=color,
)
Expand Down

0 comments on commit 906aaa0

Please sign in to comment.