The 2 files have different column names and numbers. I would like to combine the rows of the first file under the rows of the second file for the related columns based on the positions of the columns. I tried the below:
specifying the columns positions for the 2 files.
one = df1[6:59, ] two = df2[2:55, ]
binding the rows, using mutate because some for the columns contains factor data, not integers
a= bind_rows(mutate_all(one, as.character), mutate_all(two, as.character))
but it didn't work! can anyone help, please?