Skip to content

Commit

Permalink
Return all correlation pairs
Browse files Browse the repository at this point in the history
Users have requested to see all correlation pairs,
not just the ones that are significantly correlated.
  • Loading branch information
dafeda committed Jan 3, 2025
1 parent 09895b9 commit 9aef26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iterative_ensemble_smoother/experimental.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def progress_callback(x):

if correlation_callback is not None:
corr_XY = self._cov_to_corr_inplace(cov_XY, stds_X, stds_Y)
correlation_callback(corr_XY[significant_rows])
correlation_callback(corr_XY)
return X


Expand Down

0 comments on commit 9aef26a

Please sign in to comment.