gpt4 book ai didi

python - 如何在python的pandas模块中获得与Data.Frame相同的data.frame?

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

在R中,我们可以得到两个data.frame,比如x和y。

> x=data.frame(matrix(1:12,nrow=2,byrow=TRUE))
> y=data.frame(matrix(1:12,nrow=2,byrow=FALSE))
> x
X1 X2 X3 X4 X5 X6
1 1 2 3 4 5 6
2 7 8 9 10 11 12
> y
X1 X2 X3 X4 X5 X6
1 1 3 5 7 9 11
2 2 4 6 8 10 12
>

如何在python的pandas模块中获取与Data.Frame相同的data.frame,如何在python的pandas模块中获取与Data.Frame相同的x和y?

最佳答案

>>> import numpy as np
>>> import pandas as pd

>>> x = pd.DataFrame(np.arange(1,13).reshape(2,-1))
>>> y = pd.DataFrame(np.arange(1,13).reshape(-1,2).T)

>>> x
0 1 2 3 4 5
0 1 2 3 4 5 6
1 7 8 9 10 11 12

>>> y
0 1 2 3 4 5
0 1 3 5 7 9 11
1 2 4 6 8 10 12

关于python - 如何在python的pandas模块中获得与Data.Frame相同的data.frame?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27775437/

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