Python:将列从float转换为int

时间:2017-05-15 21:53:09

标签: python python-2.7 pandas numpy dataframe

我使用的是pandas,需要根据set_id索引连接两个数据帧。其中一个数据帧将这些作为浮点数(见下文)。如何将这些转换为整数?

enter image description here

1 个答案:

答案 0 :(得分:4)

您可以使用

执行此操作
df.index = df.index.astype(int)