Simple question, but I can't seem to find an answer:
I have two lists, with overlapping names. Two lists will always have the same value for a given name, like so:
list1 ->
  $col_a
  [1] "a"
  $col_b
  [1] "b"
  $col_c
  [1] "c"
list2 ->
  $col_b
  [1] "b"
  $col_c
  [1] "c"
  $col_d
  [1] "d"
Combining them, as in this answer, gives me the following:
$col_a
[1] "a"
$col_b
[1] "b" "b"
$col_c
[1] "c" "c"
$col_d
[1] "d"
Instead, I would like:
$col_a
[1] "a"
$col_b
[1] "b"
$col_c
[1] "c"
$col_d
[1] "d"
How do I do this?
 
    