HOME/Articles/

matplotlib example heatmap (snippet)

Article Outline

Python matplotlib example 'heatmap'

Functions in program:

  • def heatmap(data):

Modules used in program:

  • import seaborn as sns

python heatmap

Python matplotlib example: heatmap

import seaborn as sns

def heatmap(data):
  sns.heatmap(tmp, annot=True, fmt='g')mp = 

if __name__ == "__main__":
  data =  [[214051, 9114],[135, 210]]
  heatmap(data)