怎么将df.drop(df.index[])写为函数
时间: 2024-02-09 10:12:09 浏览: 104
工作模式-python中pandas dataframe删除一行或一列:drop函数详解
你可以这样将`df.drop(df.index[])`写为函数:
```python
def drop_rows(df, indices):
return df.drop(df.index[indices])
```
其中,`df`是需要删除行的DataFrame,`indices`是需要删除的行的索引列表。这个函数会返回一个删除了指定行后的新DataFrame。
阅读全文