You are going to practice working with a dataset containing information about students. The dataset has three columns: year represents a student's year of study, degree represents their degree program, and age represents their age.
You must perform the following steps:
Load the data into a pandas
DataFrame.Calculate the proportion of missing values for each column in the dataframe using appropriate pandas methods.
Round the calculated proportions of missing values to two decimal places (use
pandas.DataFrame.round(decimals=...)to round values in the wholeDataFrameorpandas.Series.round(decimals=...)to round values in the selected column).Print the result, ensuring that it follows the format shown in the example.
Copy the printed result to the answer section.