gpt4 book ai didi

python - 将 Pandas Dataframe 中的列表拆分为多列

转载 作者:行者123 更新时间:2023-12-05 06:10:57 24 4
gpt4 key购买 nike

我有一个 pandas 数据框,如下所示,其中坐标列包含 X 和 Y 坐标:

    Coordinates Cluster
0 [25, 79] 2
1 [34, 51] 2
2 [22, 53] 2
3 [27, 78] 2
4 [33, 59] 2

我想将 Coordinates 列拆分为 X 和 Y 列,这样我就有如下内容:

    X   Y   Cluster
0 25 79 2
1 34 51 2
2 22 53 2
3 27 78 2
4 33 59 2

我怎样才能做到这一点?

最佳答案

检查

out = df.join(pd.DataFrame(df.pop('Coordinates').tolist(), index=df.index, columns=["X", "Y"]))

关于python - 将 Pandas Dataframe 中的列表拆分为多列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64173212/

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