Skip to content

Commit

Permalink
change max probability
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Sommani committed Sep 10, 2024
1 parent 933fef3 commit 052e8f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyreader/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def create_plot(self, result: SkyScanResult, dozoom: bool = False) -> None:
prob_map = copy.copy(grid_map) - min_llh
prob_map = -prob_map*np.log10(np.exp(1))
min_prob = np.nanmin(prob_map)
max_prob = np.nanmax(prob_map)
max_prob = 0.
#prob_map = prob_map.clip(min_prob, None).astype('float32')


Expand Down

0 comments on commit 052e8f3

Please sign in to comment.