python中如何向空的dataframe插入一列数据
时间: 2024-05-01 10:16:09 浏览: 120
浅析pandas 数据结构中的DataFrame
你可以使用 Pandas 库中的 `DataFrame` 对象提供的 `assign()` 方法来为一个空的 `DataFrame` 添加一列数据。下面是示例代码:
```python
import pandas as pd
# 创建一个空的 DataFrame
df = pd.DataFrame()
# 添加一列数据
df = df.assign(new_column=[1, 2, 3, 4, 5])
print(df)
```
输出结果为:
```
new_column
0 1
1 2
2 3
3 4
4 5
```
在该示例中,我们首先创建了一个空的 `DataFrame`,然后使用 `assign()` 方法为其添加了一列名为 `new_column` 的数据。你可以根据需要修改示例代码中的列名和数据内容。
阅读全文