gpt4 book ai didi

python - 从多索引数据框中删除特定行

转载 作者:太空狗 更新时间:2023-10-29 22:12:42 25 4
gpt4 key购买 nike

我有一个如下所示的多索引数据框:

 start      grad
1995-96 1995-96 15 15
1996-97 6 6
2002-03 1 1
2007-08 1 1

我想降低第一级(级别=0)的具体值。在这种情况下,我想删除第一个索引中包含 1995-96 的所有内容。

最佳答案

pandas.DataFrame.drop将级别作为可选参数

df.drop('1995-96', level='start')

从 v0.18.1 开始,它的文档字符串说:

"""
Signature: df.drop(labels, axis=0, level=None, inplace=False, errors='raise')
Docstring: Return new object with labels in requested axis removed.

Parameters
----------
labels : single label or list-like
axis : int or axis name
level : int or level name, default None
For MultiIndex
inplace : bool, default False
If True, do operation inplace and return None.
errors : {'ignore', 'raise'}, default 'raise'
If 'ignore', suppress error and existing labels are dropped.

.. versionadded:: 0.16.1
"""

关于python - 从多索引数据框中删除特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39238639/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com