如何将list的数据加入DataFrame中的一列
时间: 2024-05-14 21:18:18 浏览: 97
pandas对dataFrame中某一个列的数据进行处理的方法
5星 · 资源好评率100%
可以使用Pandas库中的DataFrame类型,使用其中的一列来存储list数据。以下是一个示例代码:
```python
import pandas as pd
# 创建DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': ['a', 'b', 'c']})
# 创建要加入的list数据
my_list = [4, 5, 6]
# 将list数据添加到DataFrame中的一列
df['C'] = my_list
print(df)
```
输出结果为:
```
A B C
0 1 a 4
1 2 b 5
2 3 c 6
```
其中,`df['C'] = my_list` 表示将list数据 `my_list` 加入到DataFrame `df` 中的一列 `C` 中。
阅读全文