Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Fill NaN of DF with the values below

I have a DF like this, it’s a transposed DF (pd.transpose()) :

         0    1    2
COL_5  NaN  NaN  NaN
COL_4  NaN  NaN    4
COL_3  NaN   12    7
COL_2   15    4   11
COL_1    7    8    9

I want to replace the NaN’s with the values below :

         0    1    2
COL_5   15   12    4
COL_4    7    4    7
COL_3         8   11
COL_2              9
COL_1

I don’t know how to do it…

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You can use:

out = (df
   .apply(lambda c: pd.Series(c.dropna().to_numpy()))
   .reindex(range(len(df)))
   .set_axis(df.index)
)

Better alternative if you only have the NaNs at the top and no more afterwards:

out = df.apply(lambda c: c.shift(-c.isna().sum()))

output:

          0     1     2
COL_5  15.0  12.0   4.0
COL_4   7.0   4.0   7.0
COL_3   NaN   8.0  11.0
COL_2   NaN   NaN   9.0
COL_1   NaN   NaN   NaN
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading