Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given two data frames

df1 = data.frame(CustomerId=c(1:6),Product=c(rep("Toaster",3),rep("Radio",3)))
df2 = data.frame(CustomerId=c(2,4,6),State=c(rep("Alabama",2),rep("Ohio",1)))

> df1
  CustomerId Product
           1 Toaster
           2 Toaster
           3 Toaster
           4   Radio
           5   Radio
           6   Radio

> df2
  CustomerId   State
           2 Alabama
           4 Alabama
           6    Ohio

How can I do database style, i.e., sql style, joins? That is, how do I get:

  • An inner join of df1 and df1
  • An outer join of df1 and df2
  • A left outer join of df1 and df2
  • A right outer join of df1 and df2

P.S. IKT-JARQ (I Know This - Just Adding R Questions)

Extra credit:

How can I do a sql style select statement?

share|improve this question
1  
Whoa, 650 rep from a single question :-O Nice :-) – Hugh Perkins Oct 22 '12 at 6:40

4 Answers

up vote 115 down vote accepted

By using the merge function and its optional parameters:

Inner join: merge(df1, df2) will work for these examples because R automatically joins the frames by common variable names, but you would most likely want to specify merge(df1, df2, by="CustomerId") to make sure that you were matching on only the fields you desired. You can also use the by.x and by.y parameters if the matching variables have different names in the different data frames.

Outer join: merge(x = df1, y = df2, by = "CustomerId", all = TRUE)

Left outer: merge(x = df1, y = df2, by = "CustomerId", all.x=TRUE)

Right outer: merge(x = df1, y = df2, by = "CustomerId", all.y=TRUE)

Cross join: merge(x = df1, y = df2, by = NULL)

Just as with the inner join, you would probably want to explicitly pass "CustomerId" to R as the matching variable. I think it's almost always best to explicitly state the identifiers on which you want to merge; it's safer if the input data.frames change unexpectedly and easier to read later on.

share|improve this answer
1  
Matt, good answer! Do you mind fixing your missing parenthesis? – JD Long Aug 19 '09 at 17:52
1  
Man, sloppy as hell today, apparently. – Matt Parker Aug 19 '09 at 18:53
6  
Andhowaboutsomespacesinyourcode? ;) – hadley Aug 20 '09 at 2:08
2  
I blame you for that, Hadley. I learned R at ISU, and this is how I turned out - clearly, you were not evangelizing sufficiently. :P – Matt Parker Aug 20 '09 at 4:55
2  
That was before I become such an evangelist for spaces! – hadley Aug 20 '09 at 12:51
show 4 more comments

I would recommend checking out Gabor Grothendieck's sqldf package, which allows you to express these operations in SQL.

library(sqldf)

## inner join
df3 <- sqldf("SELECT CustomerId, Product, State 
       FROM df1 JOIN df2 USING(CustomerID)")

## left join (substitute 'right' for right join)
df4 <- sqldf("SELECT CustomerId, Product, State 
       FROM df1 LEFT JOIN df2 USING(CustomerID)")

I find the SQL syntax to be simpler and more natural than its R equivalent (but this may just reflect my RDBMS bias).

See Gabor's sqldf Google Code page for more information

share|improve this answer
I love the sqldf package, its so handy sometimes. – ADP Feb 12 at 4:43

There are some good examples of doing this over at the R Wiki. I'll steal a couple here:

Merge Method

Since your keys are named the same the short way to do an inner join is merge():

merge(df1,df2)

a full inner join (all records from both tables) can be created with the "all" keyword:

merge(df1,df2, all=TRUE)

a left outer join of df1 and df2:

merge(df1,df2, all.x=TRUE)

a right outer join of df1 and df2:

merge(df1,df2, all.y=TRUE)

you can flip 'em, slap 'em and rub 'em down to get the other two outer joins you asked about :)

Subscript Method

A left outer join with df1 on the left using a subscript method would be:

df1[,"State"]<-df2[df1[ ,"Product"], "State"]

The other combination of outer joins can be created by mungling the left outer join subscript example. (yeah, I know that's the equivalent of saying "I'll leave it as an exercise for the reader...")

share|improve this answer
Huh, I didn't know that R would take "x" or "df1" for the "all.__" parameter. – Matt Parker Aug 19 '09 at 15:18
yeah, it's kinda nice when you read code done with the all.variable notation. It keeps you from having to think about which is x and which is y. Also easier for those uninitiated with merge() to figure out. – JD Long Aug 19 '09 at 15:21
3  
It's all.x and all.y, not all.df1 and all.df2. – hadley Aug 19 '09 at 16:28
2  
I tested what Hadley is saying and (in my environment at least), all.df1 is not the same as all.x. Looks like all.df1 is ignored completely. – Dan Goldstein Aug 19 '09 at 16:41
1  
Ah, I just tested all.y against all.df2, which are the same (even if R ignores the all.df2 parameter). Doesn't fly for df1 and x. That was lazy of me. I always forget that R just ignores parameters it doesn't understand - I sometimes wish it would throw a warning, at least. – Matt Parker Aug 19 '09 at 17:29
show 2 more comments

There is the data.table approach for an inner join, which is very time and memory efficient (and necessary for some larger data.frames):

 if(!require(data.table)){install.packages("data.table")}

 df1 = data.frame(CustomerId=c(1:6),Product=c(rep("Toaster",3),rep("Radio",3)))
 df2 = data.frame(CustomerId=c(2,4,6),State=c(rep("Alabama",2),rep("Ohio",1)))

 dt1<-data.table(df1,  key="CustomerId") 
 dt2<-data.table(df2, key="CustomerId")

 joined.dt1.dt.2<-dt1[dt2]

Merge also works on data.tables:

merge(dt1, dt2)

data.table documented on stackoverflow:
R: how to do a data.table merge operation
Translating SQL joins on foreign keys to R data.table syntax
Efficient alternatives to merge for larger data.frames R
How to do a basic left outer join with data.table in R?

Yet another option is the join() function found in the plyr package

library(plyr)

join(df1, df2,
     type="inner")

CustomerId Product   State
1          2 Toaster Alabama
2          4   Radio Alabama
3          6   Radio    Ohio

Options for type

  • inner
  • left
  • right
  • full
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.