Have two dataframes, one contains ground_truth for cities, another one is read from other files randomly.
ground_truth = pd.DataFrame(['New York','Denvor','Cleveland'],columns = ['cities'])
random_df = pd.DataFrame(['DenvoR','cleveland'],columns = ['cities'])
Need to compare two dataframes, compare random_df cities
column with ground_truth cities
column, change to the ground_truth cities if cases are messed up.
So far I used for loop, it works but not elegant. Any suggestion?