pandas 清空行
时间: 2023-12-15 10:33:26 浏览: 115
Python pandas.DataFrame 找出有空值的行
以下是两种pandas清空行的方法:
1.使用drop()函数删除行
```python
# 删除第1行
df.drop(df.index[0], inplace=True)
# 删除前3行
df.drop(df.index[0:3], inplace=True)
# 删除第1和第3行
df.drop(df.index[[0, 2]], inplace=True)
```
2.使用append()函数添加没有name的Series,并设置ignore_index为True
```python
s = pd.Series([16, 17, 18, 19], index=df.columns)
df = df.append(s, ignore_index=True)
```
阅读全文