If you want to fill null values in one DataFrame with non-null values at the same locations from another DataFrame, use pandas.DataFrame.combine_first
.
In the code above, the values at the first row of store1
are updated with the values at the first row of store2
.