📌  相关文章
📜  如何从数据框 pandas 中删除某些行 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:37.429000             🧑  作者: Mango

代码示例1
# delete 10th, 11th, and 15th row of df, axis = 0 signify rows, inplace=True means changes directly going to apply to df.
df.drop(labels=[10, 11, 15], axis=0, inplace=True)
# or
df = df.drop(labels=10, axis=0)