gpt4 book ai didi

python - 按行过滤数据框

转载 作者:行者123 更新时间:2023-12-01 04:38:03 25 4
gpt4 key购买 nike

我有一个看起来像这样的数据框

CompanyName User Issue  Equipment Issue No  TBD Total
Customer1 0 0 35 0 35
Customer2 0 0 28 0 28
Customer3 2 3 12 0 17
Customer4 5 1 8 0 14

我想从表中删除 Customer1 和 Customer2。我正在尝试使用

df= df[[c for c in df.columns if c not in ['Customer1','Customer2']]]

df=df[(~df.isin('Customer2','Customer2'))]

df=df[~df['CompanyName'].str.contains('Customer1')]

我没有收到任何错误,但 Customer1 和 Customer2 仍然出现在图中!

df.columns.tolist

Out[85]: <bound method Index.tolist of Index([u'CompanyName', u'User Issue', u'Equipment Issue', u'No', u'TBD'], dtype='object')>

sortedtotal.columns.tolist()
Out[93]:
['CompanyName',
'User Issue',
'Equipment Issue',
'No',
'TBD']

最佳答案

尝试重置索引:

df.reset_index()

然后您将获得一个自动增量索引,但您的客户索引将成为一列。更多这里: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.reset_index.html

之后,您的过滤数据的命令应该可以工作。

编辑:使用这种过滤方法:df = df[~df['公司名称'].isin(['客户1', '客户2'])]

关于python - 按行过滤数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31387876/

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