“Pandas nicht in der Liste” Code-Antworten

Pandas ist nicht in

df[~df.column.isin(list_name)]
D Goglia

Pandas nicht in der Liste

>>> df
  countries
0        US
1        UK
2   Germany
3     China
>>> countries
['UK', 'China']
>>> df.countries.isin(countries)
0    False
1     True
2    False
3     True
Name: countries, dtype: bool
>>> df[df.countries.isin(countries)]
  countries
1        UK
3     China
>>> df[~df.countries.isin(countries)]
  countries
0        US
2   Germany
Hambo

Python nicht in der Liste

>>> 3 not in [2, 3, 4]
False
>>> 3 not in [4, 5, 6]
True
Shy Stag

Isnotin Python

import pandas as pd

>>> df
  country
0        US
1        UK
2   Germany
3     China
>>> countries_to_keep
['UK', 'China']
>>> df.country.isin(countries_to_keep)
0    False
1     True
2    False
3     True
Name: country, dtype: bool
>>> df[df.country.isin(countries_to_keep)]
  country
1        UK
3     China
>>> df[~df.country.isin(countries_to_keep)]
  country
0        US
2   Germany
Smoggy Sandpiper

Ähnliche Antworten wie “Pandas nicht in der Liste”

Fragen ähnlich wie “Pandas nicht in der Liste”

Weitere verwandte Antworten zu “Pandas nicht in der Liste” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen