I am using the function on a dataset and instead of counting the null values and showing them in the n_missing column of the summary, it is showing the number of null values in the empty column of the summary. Can someone help me out or explain why this problem is occuring and how to remove the null values from my table?
Before using the function, you can preprocess the dataset to handle missing values explicitly. You can use functions like dropna() or fillna() to remove or replace null values with appropriate values before generating the summary.