I want to update empty rows in dataframe1 with the equivalent values from dataframe2 only if the rows in dataframe1 is empty.
Cases:
fig 1
fig 2
In the above example, I want to fill only empty rows of Price columns in dataframe1 with the equivalent Price columns from dataframe2.
Any ideas or suggestions for this?
import pandas as pd
df1 = pd.read_csv('dataframe1.csv')
df2 = pd.read_csv('dataframe2.csv')

