Calculating similarity between two vectors/Strings in R

旧巷老猫 提交于 2020-01-25 06:50:12

问题


It might be similar question asked in this forum but I feel my requirement peculiar. I have a data frame df1 where it consists of variable "WrittenTerms" with 40,000 observations and I have another data-fame df2 with variable "SuggestedTerms" with 17,000 observations

I need to calculate the similarity between "written Term" and "suggestedterms"

df1$WrittenTerms

head pain

lung cancer

abdminal pain

df2$suggestedterms

cardio attack

breast cancer

abdomen pain

head ache

lung cancer

I need to get the output as follow

df1$WrittenTerms df2$suggestedterms Similarity_percentage

head pain head ache 50%

lung cancer lung cancer 100%

abdminal pain abdomen pain 80%

I am writing the below code to meet the requirement but its taking more time as it involves for loop and is there any way where we can find similarity using TF IDF OR any other approach which will take less time

df_list <- data.frame(check.names = FALSE) # Creating empty dataframe

# calculating similarity between strings.

for(i in df1$WrittenTerms){
  df2$oldsim<- stringdist(i,df2$suggestedterms,method = "lv")
  df2$oldsim <- 1 - df2$oldsim / nchar(as.character(df2$suggestedterms))
  df2 <- head(df2[order(df2$oldsim, decreasing = TRUE),],1)
  df_list <- rbind(df_list, df2)
}

df1 <- cbind(df1, df_list)

回答1:


The base library's adist function gives you Levenshtein distances between two arrays, returning a matrix of distances for each pair of entries. You could write a function that converts the Levenshtein metric into your transformation:

my_dist <- function(x, y) 1 - adist(x, y) / nchar(y)
x <- my_dist(df1$WrittenTerms, df2$suggestedterms)

Now obtain the maximum value of your metric for each row of x, which will be the best suggestedterm for each WrittenTerms:

mx <- apply(x, 1, function(y) {mx <- which.max(y); c(y[mx], mx)})

Your final desired data frame could then be constructed as follows:

data.frame(Written.Terms = df1$WrittenTerms, 
           suggestedterms = df2$suggestedterms[mx[2, ]], 
           Similarity_percentage = mx[1, ])


来源:https://stackoverflow.com/questions/58485947/calculating-similarity-between-two-vectors-strings-in-r

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!