Python Dataframe fillna with value on left column

Question:

I have an excel spreadsheet where there are merged cells.

enter image description here

I would like to build a dictionary of Product_ID – Category – Country.

But for that I need to get, I believe, Python to be able to read an excel file with horizontally merged cells.

import pandas as pd

excel_sheet = pd.read_excel(r'C:UsersmyusernameDocumentsProduct_Sales_Database.xlsx, 'Product IDs')

However the returned dataframe is this:

enter image description here

My question is, how can I fill the nan values in the dataframe, with the values on the left column?

Thank you!

Asked By: Economist

||

Answers:

This should do:

df.iloc[0] = df.iloc[0].ffill() 
Answered By: Juan C

I understand, that the question is more than 2 yo, and the best answer is correct, but if you want to fill NaNs of the whole Frame, you can use:

df.T.ffill().T 
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.