convertir df.isnull (). sum () en dataframe

In [78]: df.isnull().sum().to_frame('nulls')
Out[78]:
   nulls
a      1
b      2
c      0
peamdev