Imagine you have to run the following in STATA
`tab var1 region if var1 > 4
tab var2 region if var2 > 32
tab var3 region if var3 > 7`
and so on for many varables. Notice that the filter IF depends on the variable.
I would like to do the same by iterating over a list of variables. Something like
`thresholdList = "4 32 7 ..." /// don't know if this works
foreach myvar of var1 var2 var3 ... {
tab `myvar' region if `myvar' > thresholdList(`counter')
local counter = `counter' + 1
}
`
Clearly, the code here above does not work in STATA. I'm trying to understand how can I define a macro list of values and access the i-th element of the list expicitly thresholdList(`counter').
Any ideas? Thanks