i am trying to check any loss of data in categorical columns (such as data for an entire category) after data cleansing. i have 2 series that contains unique values of each categorical column in the dataframes.
Before Data Cleansing
- dataframe1.nunique()
Column 1 | 10 |
Column 2 | 20 |
After Data Cleansing
- dataframe2.nunique()
Column 1 | 10 |
Column 2 | 15 |
Any idea how to get a table in the following format for better presentation ? Both dataframe has same columns, but not same row count.
Column 1 | 10 | 10 |
Column 2 | 20 | 15 |