0

How to View my full heatmap?

fig = plt.subplots(figsize=(10,5))

corrmat=data.corr()

sns.heatmap(corrmat,annot=True)

plt.show()

Heatmap

  • 3
    Does this answer your question? [matplotlib/seaborn: first and last row cut in half of heatmap plot](https://stackoverflow.com/questions/56942670/matplotlib-seaborn-first-and-last-row-cut-in-half-of-heatmap-plot) – BigBen Apr 08 '20 at 14:40
  • yes but i dont find solution from that – Koushik C S Apr 08 '20 at 14:48
  • From that same question thread, I like [this solution](https://stackoverflow.com/a/58165593/10852841) if updating matplotlib isn't feasible. – m13op22 Apr 08 '20 at 14:57

1 Answers1

0

Try to update anaconda and update the matplotlib version

conda update matplotlib
Evan
  • 78
  • 1
  • 12