We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Btw, I wanna start first by saying that this module is genius and I love it.
Anyway, if trying something like df.column == Anything it returns a TypeError:
df.column == Anything
Could not compare <class 'anything.AnythingType'> type with Series
This is easily circumventable by using df.column.values, but I still wanted to let you know.
Surprisingly, it poses no problems with a dataframe, doing something like df[['column']] == Anything works no problemo.
df[['column']] == Anything
The text was updated successfully, but these errors were encountered:
Thank you! I don't know Pandas, so I don't know why that would happen, but I suspect the Series type does some magic of its own.
Sorry, something went wrong.
No branches or pull requests
Btw, I wanna start first by saying that this module is genius and I love it.
Anyway, if trying something like
df.column == Anything
it returns a TypeError:This is easily circumventable by using df.column.values, but I still wanted to let you know.
Surprisingly, it poses no problems with a dataframe, doing something like
df[['column']] == Anything
works no problemo.The text was updated successfully, but these errors were encountered: