python – pandas和seaborn – 没有颜色的热图

我一直在使用seaborn及其热图功能.我想构建一个带有来自pandas dataframe df的带注释值的矩阵:

C,L,N
a,x,10
a,y,2
a,z,4
b,x,1
b,y,22
b,z,11
c,x,3
c,y,1
c,z,0

到目前为止,它适用于:

# Read DataBase
df = pd.read_csv('myfile.csv')

# Save Users/City/Language Matrix
pdf = df.pivot(index='C',columns='L',values='N').fillna(0)

# Set Font Parameters
rc = {'font.size': 8, 'xtick.labelsize': 11, 'ytick.labelsize': 11}

# Set figure
fig = plt.figure(figsize=(20, 9))

# Assign to Seaborn
sns.set(rc=rc)

with sns.axes_style('white'):

    sns.heatmap(pdf,
                cbar=False,
                square=False,
                annot=True,
                cmap='Blues',
                fmt='g',
                linewidths=0.5)

哪个回报:

enter image description here

最后,我有兴趣只保留值并将结构保存为一个简单的表格,丢弃颜色.我尝试设置cmap = None但它不起作用,如果没有cmap,seaborn会为热图分配一个认的cmap.

解决方法:

如果我不理解你的错误,并且你想要的只是忽略色彩映射,你可以使用matplotlib的ListedColormap创建你自己选择的背景颜色的自定义色彩映射:

from matplotlib.colors import ListedColormap

with sns.axes_style('white'):
    sns.heatmap(pdf,
                cbar=False,
                square=False,
                annot=True,
                fmt='g',
                cmap=ListedColormap(['white']),
                linewidths=0.5)

哪个会产生:

enter image description here

将字符串白色替换为STR,HEX或RGB颜色,以设置您选择的背景颜色.

但是,我相信大熊猫提供更好的出口选择.在下面找到所有可能的导出选项的屏幕:

enter image description here

根据您要插入表格的位置,也许to_html,to_json或to_latex比使用seaborn绘图更好.

相关文章

转载:一文讲述Pandas库的数据读取、数据获取、数据拼接、数...
Pandas是一个开源的第三方Python库,从Numpy和Matplotlib的基...
整体流程登录天池在线编程环境导入pandas和xrld操作EXCEL文件...
 一、numpy小结             二、pandas2.1为...
1、时间偏移DateOffset对象DateOffset类似于时间差Timedelta...
1、pandas内置样式空值高亮highlight_null最大最小值高亮背景...