Hi @Rafael_Sahagun ,You can follow these steps in RStudio,Read hit_date.tsv in one dataframe, let's call it hit_data_dfRead column_headers.tsv in one dataframe, let's call it column_headers_dfUpdate column names of hit_data_df with below command,colnames(hit_data_df) <- column_headers_df[1,] Cheers...