Trying to change values in column 1 to the values found in column 2 if the values in column 1 == 'nan'.
for row in df.column_1:
if row == 'nan':
df.column_1 == df.column_2
But no changes are seen.
Desired Before and After: [sorry, graphic won't upload at the moment]