nesticot commited on
Commit
83239ab
·
verified ·
1 Parent(s): e197abc

Update functions/heat_map_functions.py

Browse files
Files changed (1) hide show
  1. functions/heat_map_functions.py +4 -1
functions/heat_map_functions.py CHANGED
@@ -535,7 +535,10 @@ def heat_map_plot_hex_damage(df:pl.DataFrame,
535
  x='px',
536
  y='pz',
537
  ec = 'black',
538
- cmap=cmap,
 
 
 
539
  ax=ax)
540
 
541
 
 
535
  x='px',
536
  y='pz',
537
  ec = 'black',
538
+ palette=cmap,
539
+ hue='woba_pred_contact',
540
+ hue_norm=mcolors.Normalize(vmin=0, vmax=0.5), # <- HERE
541
+ legend=False
542
  ax=ax)
543
 
544