InterviewSolution
Saved Bookmarks
| 1. |
How To Handle Or Missing Data In A Dataset? |
|
Answer» An individual can easily find missing or corrupted data in a data set either by dropping the rows or columns. On contrary, they can DECIDE to replace the data with ANOTHER VALUE. In Pandas they are TWO WAYS to identify the missing data, these two methods are very useful. isnull() and dropna(). An individual can easily find missing or corrupted data in a data set either by dropping the rows or columns. On contrary, they can decide to replace the data with another value. In Pandas they are two ways to identify the missing data, these two methods are very useful. isnull() and dropna(). |
|