Процент нулевых значений для каждой переменной в DataFrame

null = df.isna().sum()/len(df)
null[null > 0].sort_values()
Fragile Fish