Hi I am unable to merge csv files which are unstructured. Below is my code:
file1 = read.csv("fileone.csv",header=TRUE,skip=0)
file2 = read.csv("filetwo.csv",header=TRUE,skip=0)
I have data sets something like this:
Data:file1 Date:file2
City State City State
Boston MA Dallas TX
Seattle WA Lowell MA
Miami FL
Chicago IL
I want result like this:
MergedData
City State
Boston MA
Seattle WA
Miami FL
Chicago IL
Dallas TX
Lowell MA