dunovank / jupyter-themes

Custom Jupyter Notebook Themes
MIT License
9.74k stars 1.06k forks source link

Problem with seaborn clustermap and dendrogram's lines #406

Open yonice7 opened 3 years ago

yonice7 commented 3 years ago

When I run on jupyter notebook using jtplot.style()

sns.clustermap(x_scaled, cmap='mako', figsize = (8,8))
plt.show()

I get this graph dendogram

The problem is, how can I change the color of the dendogram's lines? I can barely see them

pythonic2020 commented 3 years ago

You could increase grid line thickness with

plt.grid(linewidth=2)

yonice7 commented 3 years ago

Perfect, thanks!