I have a dataframe with numerous columns (≈30) from an external source (csv file) but several of them have no value or always the same. Thus, I would to see qui
dataframe
you can use df.apply which will apply each column with provided function, in this case counting missing value. This is what it looks like,
df.apply
df.apply(lambda x: x.isnull().value_counts())