gpt4 book ai didi

python - 如何将分类索引转换为 float ?

转载 作者:行者123 更新时间:2023-11-28 21:08:26 25 4
gpt4 key购买 nike

我在 Pandas 数据框中有一个风向分类索引。

print (self.Groups.index)

CategoricalIndex([22.5, 67.5, 112.5, 157.5, 202.5, 247.5, 292.5, 337.5],
categories=[22.5, 67.5, 112.5, 157.5, 202.5, 247.5, 292.5, 337.5],
ordered=True, name='Dir', dtype='category')

我正在尝试使用此索引来绘制风向图,例如。

 ax.bar(self.Groups.index,self.Groups['wind_speed'])

但我需要将索引转换为弧度,以便在极坐标图上正确显示。

有没有办法将分类索引转换为 float ?

最佳答案

使用astype 进行转换:

self.Groups.index = self.Groups.index.astype('float')

关于python - 如何将分类索引转换为 float ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39903986/

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