I have two data sets that I would like to merge by cities. the problem is that one dataset just has the name for example: "Bently", "Caroline", etc. But the other data set has for example "Town of Bently", "Village of Caroline", etc. Is there anyway of merging them using substrings? any suggestions
|
You could use
Just modify the join so it suits your needs (inner, left, right, full). If you have city names that are not substrings of each other you could try calculating edit distance between two names with |
||||
|
|
|
If it is always '... of ', then you can use the position of "of" to guide you. Scan (... -1) won't always work in the case of multiple-word cities ("New York City").
|
|||
|
|
|
If in the second dataset the form is always "word + of + actual_name" then I would use a datastep with
and then you can compare the two with a merge- or a proc sql-statement. Here the link to the SAS-support for the scan function. |
|||
|
|
|
I suggest that you use the index function. http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000212242.htm
|
|||
|
|