I have the following sample DataFrame:
a | b | c | 1 | 2 | 4 | 0 | null | null| null | 3 | 4 |
And I want to rep
Use a dictionary to fill values of certain columns:
df.fillna( { 'a':0, 'b':0 } )