Skip to content

Commit

Permalink
remove highlight feature labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkilic committed Sep 25, 2023
1 parent 80acfed commit ff1128e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions bluepyemodel/emodel_pipeline/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,11 +355,6 @@ def scores(model, figures_dir="./figures", write_fig=True):
axs[0, 0].set_yticks(pos)
axs[0, 0].set_yticklabels(scores_names, size="small")

# Update y-tick labels' color based on the condition
for label, s in zip(axs[0, 0].get_yticklabels(), score):
if s > SCORE_THRESHOLD:
label.set_color("red")

axs[0, 0].set_xlim(0, 5)
axs[0, 0].set_ylim(-0.5, len(pos) - 0.5)

Expand Down

0 comments on commit ff1128e

Please sign in to comment.