R
rich
I have two lists of data which I am trying to match up with one
another to save me sifting through and sorting them manually. For
example the list 1 would look like this:
a 1
b 18
c 5
d 8
e 5
f 12
g 2
and list teo would look like this:
a 2
b 5
d 8
f 23
g 3
Now I want to match these two lists up so I get a list like this:
a 1 2
b 18 5
c 5
d 8 8
e 5
f 12 23
g 2 3
Is there any way of doing this as when list 1 consists of 100 entries
and list 2 consists of 78 it's very time consuming to match them up.
Thanks
another to save me sifting through and sorting them manually. For
example the list 1 would look like this:
a 1
b 18
c 5
d 8
e 5
f 12
g 2
and list teo would look like this:
a 2
b 5
d 8
f 23
g 3
Now I want to match these two lists up so I get a list like this:
a 1 2
b 18 5
c 5
d 8 8
e 5
f 12 23
g 2 3
Is there any way of doing this as when list 1 consists of 100 entries
and list 2 consists of 78 it's very time consuming to match them up.
Thanks