Suppose there is a data frame like (call it df1)
203       Feb 2014  353
204       Feb 2015  416
205       Feb 2057    2
206       Feb 2058    1
207       Feb 2062    1
208       Feb 2064    1
209       Feb 2065    1
210       Feb 2066    4
211       Feb 2067   10
212       Feb 2068    3
213       Jan 1969  123
214       Jan 1970  120
215       Jan 1971  162
216       Jan 1972  159
217       Jan 1973  109
218       Jan 1974   98
and another dataframe like ( call it df2)
1         Feb 2014
2         Jan 1974
then how do i make a subset of the df1 such that
204       Feb 2015  416
218       Jan 1974   98
is there way of doing this with base R?
 
     
     
    