Merge Columns of the Same Type from Two Data Frames
Source:R/simlr_nhanes.R
merge_same_type_columns.Rd
Merges columns of the same type from two data frames based on common column names.
Examples
merge_same_type_columns(data.frame(a = 1:3), data.frame(a = 4:6))
#> a
#> 1 1
#> 2 2
#> 3 3
#> 4 4
#> 5 5
#> 6 6