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