欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

seaborn ---- 绘制热力图

程序员文章站 2022-07-14 10:06:13
...
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt

data = np.random.rand(4,3)*10

fig, ax = plt.subplots(figsize = (12,9))

sns.heatmap(np.round(data,2), annot=True, vmax=10,vmin = 0, linewidths=.5, xticklabels= ['a', 'b', 'c'], yticklabels= ['1', '2', '3', '4'], square=True, cmap="YlGnBu")

ax.set_title('heatmap', fontsize = 18)
ax.set_ylabel('number', fontsize = 18)
ax.set_xlabel('letter', fontsize = 18)

seaborn ---- 绘制热力图

相关标签: python