This is based on the answer to a previous question.
df
year code
2009    a
2009    a
2009    b
2010    b
2010    b
2011    b
2011    c
2011    c
I want to select codes common to all years within df. Here it is "b". One solution is:
Reduce(intersect, list(unique(df$code[df$year==2009]),
                       unique(df$code[df$year==2010]),
                       unique(df$code[df$year==2011])))
In practice, df contains about 15 years, thousands of codes, millions of rows, and multiple columns. For starters, the above command becomes quite long when all the years are included. Plus it's memory-consuming and slow. Is there sparser/faster code to do this?