使用多个非数值列从pandas数据框(带有seaborn)中创建头像

时间:2019-07-17 13:15:22

标签: pandas seaborn heatmap

我想创建一个具有多个非数字列的熊猫数据框的热图。 Seaborn似乎只允许用一列命名y轴。

示例:

<class 'pandas.core.frame.DataFrame'>
RangeIndex: 10 entries, 0 to 9
Data columns (total 15 columns):
DRmode           10 non-null bool
RGBmode          10 non-null category
PL               10 non-null int64
CSM              10 non-null category
DL               10 non-null int64
3                10 non-null float64
6                10 non-null float64
9                10 non-null float64
12               10 non-null float64
16               10 non-null float64
19               10 non-null float64
22               10 non-null float64
25               10 non-null float64
30               10 non-null float64

我想要一个列的热图(3到30),其余的变量也应该显示出来。有任何想法吗?

(当然,我只能在所有非数字列中写一列,但这会降低可读性)

谢谢

0 个答案:

没有答案