错误:在 Python 中绘制热图 - 类型错误

时间:2021-03-12 16:39:16

标签: python pandas numpy matplotlib heatmap

我需要使用 matplotlib 中的“imshow”函数为下表创建热图。 我的代码返回TypeError: dtype 对象的图像数据无法转换为浮点

    Column 1    Column 2    movieId      title                  Genre
0   2001           2021      1           Fast and Furious       Action
1   1995           2019      2           Jumanji                Adventure
2   2012           2019      3           Avengers               Fiction
3   2009           2013      4           The Hangover           Comedy
4   1997           1997      5           Titanic                Romantic

Here is the code that I am using

import matplotlib.pyplot as plt
import pandas as pd
file='filepath...'
df=pd.read_csv(file)
df_num=df.values
plt.imshow(df.values)


0 个答案:

没有答案