Issue
under ileads_address I'm trying to create a DF that only prints out all the rows that don't have 0.0. Is there anyway to code that?
I tried doing this
df5 = df4[~df4['ileads_address'] == 0]
Solution
Try this
df4[df4['ileads_address'] != 0]
Answered By - Naveed
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.