Python Forum
Use ~a.isin on an integer or float ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Use ~a.isin on an integer or float ?
#3
I assume that .isin is from pandas.

It works on integers just fine:

>>> import pandas as pd
>>> df = pd.DataFrame({'nums': (*range(3),), 'chars': (*'abc',)})
>>> df[~df.nums.isin([1, 2])]
    nums	chars
0	   0	    a
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
Use ~a.isin on an integer or float ? - by Johnse - Sep-07-2019, 09:25 PM
RE: Use ~a.isin on an integer or float ? - by perfringo - Sep-08-2019, 09:24 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020