I’m try to create a histogram of location of rows that contain missing values for House-Prices-Advanced-Regression-Technique using this approach on python.
Following is the histogram that I want
But when I try to do train.isnull().sum(axis=1).plot(kind='hist', use_index=True)
, I get
I would appreciate if you can help.