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]
Sample CSV File MEDevel.com: Open-source for Healthcare and Education Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology. Visit Medevel
Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.
Try this
df4[df4['ileads_address'] != 0]
Subscribe now to keep reading and get access to the full archive.
Type your email…
Subscribe
Continue reading