wbuchanan / kentuckyStateReportCards

Stata project to clean, organize, and optimize the storage of KDE released data sets from the Kentucky School Report Cards website
2 stars 3 forks source link

sch_name handler #12

Closed wbuchanan closed 7 years ago

wbuchanan commented 7 years ago

@rowen0718 :

This is the opposite of the dist_name issue:

if `: list posof "sch_name" in x' != 0 {
...
qui: replace schnm = "Kentucky" if ustrregexm(sch_name, "state", 1)
...
}
wbuchanan commented 7 years ago

@rowen0718 :

And gets resolved by referencing the modified variable name within the block's scope

if `: list posof "sch_name" in x' != 0 {
...
qui: replace schnm = "Kentucky" if ustrregexm(schnm, "state", 1)
...
}