gpt4 book ai didi

python - 在python pandas的一列中转换多维列表

转载 作者:太空宇宙 更新时间:2023-11-04 06:58:20 25 4
gpt4 key购买 nike

我想知道在 pandas 框架的单列中“翻译”多维列表是否能得到一些帮助。

我在这里找到了帮助在具有多个列的列中翻译多维列表,但我需要在一个列中翻译数据

假设我有以下列表

x=[[1,2,3],[4,5,6]]

如果我创建一个框架,我会得到

frame=pd.Dataframe(x)

0 1 2
1 2 3
4 5 6

但我想要的结果应该是

0
1
2
3
4
5
6

以零作为列标题。

我当然可以用 for 循环得到结果,从我的角度来看这会花费很多时间。有什么 pythonic/pandas 方法可以得到它吗?

谢谢你帮助男人

最佳答案

你可以使用np.concatenate

x=[[1,2,3],[4,5,6]]

frame=pd.DataFrame(np.concatenate(x))
print(frame)

输出:

    0
0 1
1 2
2 3
3 4
4 5
5 6

关于python - 在python pandas的一列中转换多维列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59085881/

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