代码实现pandas数据增加一列为第一列减去第二列
时间: 2023-08-06 22:04:42 浏览: 219
Pandas实现一列数据分隔为两列
可以使用 Pandas 中的算术操作符 `-` 来实现,代码如下:
```python
import pandas as pd
# 创建一个示例数据集
data = {'col1': [1, 2, 3, 4], 'col2': [2, 4, 6, 8]}
df = pd.DataFrame(data)
# 添加新列
df['col3'] = df['col1'] - df['col2']
print(df)
```
运行结果为:
```
col1 col2 col3
0 1 2 -1
1 2 4 -2
2 3 6 -3
3 4 8 -4
```
其中,`df['col3'] = df['col1'] - df['col2']` 表示将 `col1` 列减去 `col2` 列,并将结果赋值给新的列 `col3`。
阅读全文