gpt4 book ai didi

python - 追加pandas dataframe自动转换为float但想要int

转载 作者:行者123 更新时间:2023-12-03 18:44:11 32 4
gpt4 key购买 nike

我如何让 Pandas 追加一个整数并保持整数数据类型?我意识到我可以在输入数据后将df.test.astype(int)整列,但是如果我可以在添加数据时做到这一点,那似乎是一种更好的方法。这是一个示例:

from bitstring import BitArray
import pandas as pd
df = pd.DataFrame()

test = BitArray('0x01')
test = int(test.hex)
print(test)
df = df.append({'test':test, 'another':5}, ignore_index=True)

print(df.test)
print(df.another)

这是输出:
1
0 1.0
Name: test, dtype: float64
0 5.0
Name: another, dtype: float64

它将整数更改为浮点数。

最佳答案

这是因为您的初始数据框为空。用一些整数列初始化它。

df = pd.DataFrame(dict(A=[], test=[], another=[]), dtype=int)
df.append(dict(A=3, test=4, another=5), ignore_index=True)

enter image description here

我做完了吗
df = pd.DataFrame()
df.append(dict(A=3, test=4, another=5), ignore_index=True)

enter image description here

关于python - 追加pandas dataframe自动转换为float但想要int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40513066/

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