Skip to content

Commit

Permalink
Fix vmax cutoff issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Dec 20, 2023
1 parent 92b8e6d commit 830ede3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ensembleperturbation/plotting/surrogate.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def plot_selected_probability_fields(
node_prob_field['y'].max(),
]
)
vmax = 1
vmax = 1 + numpy.finfo(float).eps
vmin = 0
for lvl in level_list:
figure = pyplot.figure()
Expand Down

0 comments on commit 830ede3

Please sign in to comment.