Tell me how do you handle missing or corrupted data in a dataset?

Submitted by: Muhammad
You could find missing/corrupted data in a dataset and either drop those rows or columns, or decide to replace them with another value.
In Pandas, there are two very useful methods:
isnull() and dropna() that will help you find columns of data with missing or corrupted data and drop those values. If you want to fill the invalid values with a placeholder value (for example, 0), you could use the fillna() method.
Submitted by: Muhammad

Read Online Data Scientist Job Interview Questions And Answers