python dataframe添加一列
时间: 2023-10-12 07:09:42 浏览: 47
使用Python向DataFrame中指定位置添加一列或多列的方法
4星 · 用户满意度95%
可以使用以下方法将新列添加到Python Pandas DataFrame中:
1. 使用Square bracket方法:
```
df['NewColumn'] = [1, 2, 3, 4, 5]
```
2. 使用assign方法:
```
df = df.assign(NewColumn=[1, 2, 3, 4, 5])
```
3. 使用loc方法:
```
df.loc[:, 'NewColumn'] = [1, 2, 3, 4, 5]
```
其中,`df`是DataFrame对象,`NewColumn`是新列的名称,`[1, 2, 3, 4, 5]`是要添加到DataFrame中的值的列表。可以根据需求更改列表中的值。
阅读全文