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 ?
#1
Hello,

isin seems to only work on strings and not
integer or float. How do I work around that,
where it works integer and floats too ?

Please advise !
Reply
#2
What is isin? It would be helpful if you at least provided a minimal, but complete code sample that demonstrates the problem.
Reply
#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


Forum Jump:

User Panel Messages

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