Quantcast
Channel: merge table in R - Stack Overflow
Viewing all articles
Browse latest Browse all 2

merge table in R

$
0
0

I have the 2 tables as below

subj <- c(1, 1, 1, 2, 2, 2, 3, 3, 3)gamble <- c(1, 2, 3, 1, 2, 3, 1, 2, 3)ev <- c(4, 5, 6, 4, 5, 6, 4, 5, 6)table1 <- data.frame(subj, gamble, ev)subj2 <- c(1, 2, 3)gamble2 <- c(1, 3, 2)table2 <- data.frame(subj2, gamble2)

I want to merge the two tables by gamble, only choose the gamble from table 1 which has the same number to gamble in table 2. The expected output is as follows:

 sub gamble ev  1      1  4  2      3  6  3      2  5

Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images