gpt4 book ai didi

python - 如何使用 dtype 预定义数据帧的 dtypes

转载 作者:太空宇宙 更新时间:2023-11-03 21:09:03 26 4
gpt4 key购买 nike

这个数据类型是如何工作的,我对这个东西很着迷。

1:首先使用python的默认类型:无法工作,引发错误

bins = pd.DataFrame(dtype=[str, int, int], columns=["chrom", "start", "end"])
raise error : TypeError: data type not understood

2:使用numpy的dtype函数。确实有效,但结果错误。

bins = pd.DataFrame(dtype=np.dtype("str","int32","int32"), columns=["chrom", "start", "end"])
bins.dtypes
output:
chrom object
start object
end object
dtype: object

最佳答案

您可以首先使用列名称定义一个DataFrame,然后使用 .astype 更改类型就像下面这样:

bins = pd.DataFrame(columns=["chrom", "start", "end"])

bins = bins.astype({'chrom':'object',
'start':'int64',
'end':'int64'})

print(bins.dtypes)
chrom object
start int64
end int64
dtype: object

注意:我使用 object 作为类型来定义 string 列,这就是 text 列的结构在pandas中定义

关于python - 如何使用 dtype 预定义数据帧的 dtypes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55192954/

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