pandas 两列相减只要数值
时间: 2023-06-30 19:21:25 浏览: 127
pandas 两列时间相减换算为秒的方法
5星 · 资源好评率100%
要对 Pandas 中的两列相减只保留数值,可以使用以下语句:
```python
df['new_column'] = df['column1'] - df['column2']
```
这将创建一个名为 `new_column` 的新列,其中包含 `column1` 和 `column2` 中的数字差异。如果你只想保留整数,可以使用 `astype` 函数将新列转换为整数类型:
```python
df['new_column'] = (df['column1'] - df['column2']).astype(int)
```
阅读全文