Is there a way I can partially match the two data frames in R?
df1<-data.frame("FIDELITY FREEDOM 2015 FUND", "ID")
df2<-data.frame("FIDELITY ABERDEEN STREET TRUST: FIDELITY FREEDOM 2015 FUND", 2020)
I want to merge df1
and df2
as df
df<-data.frame("FIDELITY FREEDOM 2015 FUND", "ID", 2020)
The string of df1
is part of the string of df2
.
So I am thinking of using fuzzy matching.
Following @dario's suggestion: