This question is similar to this one: R: Sum column wise value of two/more data frames having same variables (column names) and take Date column as reference , but my dfs have different number of columns, columns names and there is not a specific reference column.
Modifying his example:
df1:
V1 V2 V3
2 4 5
3 5 7
df2:
V1 V5 V2 V4
2 4 4 5
3 0 5 7
I want the result as:
df3:
V1 V2 V3 V4 V5
4 8 5 5 4
6 10 7 7 0
I keep getting errors like:
Error: Problem with `mutate()` input `..1`.
? Input `..1` can't be recycled to size 28. # 28 because this is referring to my df
? Input `..1` is `colnames(col_name)`.
? Input `..1` must be size 28 or 1, not 5992.
Run `rlang::last_error()` to see where the error occurred.
I've tried with merge, join, by ...etc
question from:https://stackoverflow.com/questions/65912858/how-to-sum-multiple-columns-in-two-data-frames-in-r