Error in filtering #1420
Unanswered
dharik-arsath
asked this question in
Q&A
Replies: 1 comment 7 replies
-
Can you post a reproducible example? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have some empty strings and so I used df = df[~(df.x == ' ')]. Now if I check that column things are gone and the data is clean but the column in the string datatype so if I changed that info float it and things are alright here. but when I do some filtering on that column it is throwing me the error that column has empty string. Though I have cleaned and reassigned with df.
I can able to plot histogram, I can able to see even minmax, but when I filter that column it is throwing me the error.What is the problem here? I have tried to materialize as well that also throws me the same error. Please look into the issue. Thank you
When I check for df.x it is giving me the expression with float 32 which is as expected but why can't I filter it like df[df.x > 50000]
Beta Was this translation helpful? Give feedback.
All reactions