Python在Dataframe中添加一行
时间: 2023-06-01 09:02:25 浏览: 94
python实现在pandas.DataFrame添加一行
要在Python中的Dataframe中添加一行,可以使用以下步骤:
1. 创建一个字典,包含新行的数据。
2. 使用`append()`方法将字典添加到Dataframe中。
以下是一个示例代码:
```
import pandas as pd
# 创建一个Dataframe
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
# 创建一个字典,包含新行的数据
new_row = {'A': 7, 'B': 8}
# 使用append()方法将字典添加到Dataframe中
df = df.append(new_row, ignore_index=True)
print(df)
```
输出:
```
A B
0 1 4
1 2 5
2 3 6
3 7 8
```
注意,我们将`ignore_index`参数设置为`True`,以确保新行的索引正确地分配。如果不设置此参数,则新行将分配一个新的索引值。
阅读全文