Skip to content

Commit

Permalink
update matplotlib style
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiquesydow committed Apr 26, 2024
1 parent f723cdb commit 0a73098
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dynophores/viz/plot/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
from matplotlib import ticker
import seaborn as sns

plt.style.use("seaborn")
try:
plt.style.use("seaborn")
except OSError:
# Needed for matplotlib>=3.8.0
plt.style.use("seaborn-v0_8")


def superfeatures_vs_envpartners(dynophore, superfeature_ids="all", annotate_heatmap=False):
Expand Down

0 comments on commit 0a73098

Please sign in to comment.