I have two tables: one with airport codes and Airport dataframe with iata_code and name. I want to replace the airport codes to full names. I think to use iata_code column in Airport dataframe to find the vector of row indices in Airport, using %in% opreator. Using the vector of indices, extract the name column in the relevant airport codes and save the vector of full names to my table.
here is my table:
thank you for your help