Load the given dataset into your IDE using pandas and get rid of missing values according to the following rules:
- if a column has more than 7
NaNs, drop it; - if a column wasn't deleted at the previous step, fill
NaNs with a median value.
Print the first 5 rows of the DataFrame and copy the result to the answer section.
Tip: thresh=N from dropna() requires that a column had at least N non-NaNs to survive