gpt4 book ai didi

python - 创建 seaborn 热图时 'could not convert string to float' ValueError

转载 作者:行者123 更新时间:2023-12-05 04:42:04 27 4
gpt4 key购买 nike

大家好,我有以下数据框,我想用以下代码从中创建热图。

My DataFrame

plt.figure(figsize=(10,10))
g = sns.heatmap(
top_5_stations_hourly_total_traffic_by_time,
square=True,
cbar_kws={'fraction' : 0.01},
cmap='OrRd',
linewidth=1
)

g.set_xticklabels(top_5_stations_hourly_total_traffic_by_time.STATION, rotation=45, horizontalalignment='right')
g.set_yticklabels(top_5_stations_hourly_total_traffic_by_time.TIME, rotation=45, horizontalalignment='right')

但它给出了以下错误:

ValueError: could not convert string to float: '125 ST'

最佳答案

在调用heatmap 之前旋转您的数据:

df_heatmap = df.pivot("STATION", "TIME", "HOURLY_TOTAL_TRAFFIC")

>>> sns.heatmap(df_heatmap)

enter image description here

关于python - 创建 seaborn 热图时 'could not convert string to float' ValueError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69900954/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com