前端之家收集整理的这篇文章主要介绍了
pandas – 在数据框中的某些列上将Float转换为Int,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图将列0到4和6转换为当前float类型的int.
我试过了:
df[0:4,6].astype(int)
但当然这不起作用……
考虑df
df = pd.DataFrame(np.random.rand(10,10) * 10)
使用np.r_获取slc
slc = np.r_[0:4,6]
df[slc] = df[slc].astype(int)
df
或者使用键作为列名传递类型字典
df.astype({c: int for c in slc})
原文链接:https://www.f2er.com/css/214119.html