Takes in two vectors of strings. This function will return strings in the second set, which are similar to those in the first.
find_similar(x, y, percent = 50)
a vector of strings.
a vector of strings. Strings will be returned from y which are similar to those in x
a numeric. Strings in y will be returned if they are at least this percent similar. Defaults to 50%.
a vector containing strings from y, which are similar to those in x.