I have code that works. But it is slow and I'm hoping to speed it up so I can scale up to a data set of a couple-00,000 observations.
I have two data frames, one of which I convert to a data.table using the data.table package for fast lookups and joins. I want to record records from one data set when 3 fields match a record in a second data set.
Original.df (data frame) and LookHereForMatches.dt (data.table with key on a1, a2, a3). Original.df will have a 100,000 to 300,000 observations and LookHereForMatches.dt will probably be 2x.
I loop through each observation in Original.df and look for observations in LookHereForMatches.dt that match on certain criteria. I want several fields from LookHereForMatches.dt and several fields from Original.df. I use subset() to get just the columns I want.
Maybe someone can tell me which part of my code is the worst/slowest. I have to believe it's the rbind(cbind()) part. Doesn't seem like that's the right way to do it.
matched_data.df <- data.frame()
for( i in 1:nrow(Original.df)){
a1 <- Original.df$col1
a2 <- Original.df$col2
a3 <- Original.df$col3
# Use data.table library "join" functionality to get matches (will find at least 1 and up to 4 matches, usually only 1 or 2)
match.df <- data.frame(LookHereForMatches.dt[J(a1, a2, a3)], stringsAsFactors=FALSE)
# combine matches with original data and add to data.frame to create big list of data with matches
matched_data.df <- rbind(cbind(match.df, Original.df[i,], stringsAsFactors=FALSE), matched_data.df)
}
UPDATE
Here is roughly what the data looks like. (Clearly a newbie at R and StackExchange. I'll figure out how to make the tables prettier and come back to fix that too. Thanks @joran for fixing my tables.) The tables are pretty basic stuff. I just want to find each row from the first table and match it to all appropriate rows in the second table on a1, a2, and a3. In the example, the first row from Original.df should be paired up with rows 1, 2, and 3 from the LookHereForMatches.dt table returning 3 rows.
Original.df <- read.table(textConnection('
a1 a2 a3 text.field numeric.field
123 abc 2011-12-01 "some text" 1.0
124 abc 2011-11-12 "some other text" 0.1
125 bcd 2011-12-01 "more text" 1.2
'), header=TRUE)
LookHereForMatches.df <- read.table(textConnection('
a1 a2 a3 text.field numeric.field Status_Ind
123 abc 2011-12-01 "some text" 10.5 0
123 abc 2011-12-01 "different text" 0.1 1
123 abc 2011-12-01 "more text" 0.1 1
125 bcd 2011-12-01 "other text" 4.3 0
125 bcd 2011-12-01 "text" 2.2 0
'), header=TRUE)
LookHereForMatches.dt <- data.table(LookHereForMatches.df, key=c("a1","a2","a3"))
Origional.df[Origional.df$a1 %in% LookHereForMatchers.dt$a1 & Origional.df$a2 %in% LookHereForMatches.dt$a2,]. Thefor loopis slow, but therbind(cbind(...))is much slower. Ideally you could allocate the full size ofmatched_data.dfbefore assigning. If you cannot, using something like I wrote above should help some... – Justin Apr 23 '12 at 22:13