gpt4 book ai didi

python - 如何使用 pandas 进行单元格合并

转载 作者:行者123 更新时间:2023-12-02 16:28:34 25 4
gpt4 key购买 nike

我想按如下方式组合单元格。

之前:

|   | test1 | test2 | test3 |
| -:|:----- |:----- | -----:|
| 0 | value | value | value |
| 1 | test4 | test5 |
| 2 | value | value |
| 3 | test6 | test7 | test8 |
| 4 | value | value | value |
| 5 | test9 | test0 |
| 6 | value | value |

之后:

|   | test1 | test2 | test3 | test4 | test5 | test6 | test7 | test8 | test9 | test0 |
| -:|:----- |:----- | ----- |:----- |:----- |:----- |:----- |:----- |:----- | -----:|
| 0 | value | value | value | value | value | value | value | value | value | value |

我想在 pandas 的帮助下使用 Python 代码更改单元格。请在这件事上给予我帮助。谢谢。

最佳答案

这是你可以做的事情。

import pandas as pd

df = pd.DataFrame({'test1 ':['15','test4','79', 'test6', '34', 'test9', '323'],
'test2 ':['78','test5','45', 'test7', '4', 'test10', '34'],
'test3 ':['8','','', 'test8', '56', '', '']})
print("Original Dataframe")
print(df)

df1 = pd.DataFrame()
col_names = []
col_names = df.iloc[1::2, :].to_numpy('str').tolist()
row_values = df.iloc[2::2, :].to_numpy('str').tolist()
col_names = [j for sub in col_names for j in sub if j!= '']
row_values = [j for sub in row_values for j in sub if j!= '']
df1 = pd.DataFrame([row_values], columns= col_names)
print("Dataframe 1")
print(df1)

df2 = df.iloc[[0, ]]
print("Dataframe 2")
print(df2)

df3 = pd.concat([df2, df1], axis=1)
print("Dataframe Result")
print(df3)

df1 包含除第一个数据之外的所有数据。 df2 仅包含原始列和第一行。最后,将 df1 和 df2 连接起来形成 df3
这将为您提供如下输出:

Original Dataframe
test1 test2 test3
0 15 78 8
1 test4 test5
2 79 45
3 test6 test7 test8
4 34 4 56
5 test9 test10
6 323 34
Dataframe 1
test4 test5 test6 test7 test8 test9 test10
0 79 45 34 4 56 323 34
Dataframe 2
test1 test2 test3
0 15 78 8
Dataframe Result
test1 test2 test3 test4 test5 test6 test7 test8 test9 test10
0 15 78 8 79 45 34 4 56 323 34

关于python - 如何使用 pandas 进行单元格合并,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59244462/

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