I have a table:

                         C1
RowName1        3
RowName2        2

and another table:

                          C2
RowName1        5.6
RowName1a      4.3
RowName2        NA

I want to join join the tables with matching rows:

                          C1   C2
RowName1         3    5.6
RowName2        2     NA

I'm thinking of something like:

T1$C2=T2$C2[index-expression-to-pullout the matching ones]

Any ideas would be appreciated.

Cheers,
Geoff Russell

        [[alternative HTML version deleted]]

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to