I have a list of 30k + observations something like:
application_ id | firm_name |
23 | APPLE |
24 | APPLE |
24 | |
26 | APPLE INC. |
27 | APPLE & CO. |
32 | APPLE INC. (USA) |
72 | GOOGLE CORP. |
75 | GOOGLE CORP. |
I would like to write a code conforming the different firm names, ideally to the shortest one (e.g. "APPLE").
My code is:
levelsof firm_name, local(names)
foreach n in `names' {
gen presence = strpos(firm_name, `n') > 0
replace firm_name = `n' if presence==1
drop presence
}
But I am getting "invalid name" type of error.
Many thanks for the help!
0 Response to Uniforming string variable with loop
Post a Comment