Part 3 (5 points, coding task)
Do the following tasks in this part.
-
In
df_2
, remove all rows that contain null (missing) values. -
Save the updated DateFrame object as
df_3
(that is, the change ofdf_2
should not be inplace). -
For
df_3
, print the count of missing values per column. -
Print the shape of
df_3
.