What is the percentage split of the different categories in the column “repayment_interval” after dropping the missing values? Data science using Python in Anaconda - Jupyter

import pandas as pd

data = pd.read_csv('lendingdata.csv')

round(data.repayment_interval.value_counts()*100/data.shape[0])


Output: -