DataFrame中两列数据相减代码
时间: 2023-04-07 19:02:58 浏览: 125
在dataframe两列日期相减并且得到具体的月数实例
5星 · 资源好评率100%
使用pandas库,可以这样做:
```
import pandas as pd
df['new_column'] = df['column1'] - df['column2']
```
其中df是数据框,'column1'和'column2'是原始列名,'new_column'是新列名。
阅读全文
在dataframe两列日期相减并且得到具体的月数实例