We have two types of dataframes DF_1 and DF_2 each read from csv files with file names of the types
1) DF_1 csv file name of randomNumbers-text1.csv for.
2) DF_2 csv file name of randomNumbers-text2.csv for.
They are perfectly merged into a single dataframe called merged_DF by
merged_DF = merge(DF_1, DF_2)
Now comes the tricky part.
The working directory is made up of around 13000 csv files where half is of the DF_1 csv file name type and the other of the DF_2 csv file type (see point 1 & 2 above).
Problem: How does one perform the above described perfectly merged operation on all approx. 13000 csv files and combine the output into a single combined dataframe call it combined_merged_DF?
How does one solve this the R way
Any help is much appreciated :)