Hello,
Can anyone help me identify why:
Would produce a shorter variable list than
If it's helpful, catvarlist is:
Additionally, if there's any info I could/should add, please let me know.
Thank you!
-Reese
v14.2
Can anyone help me identify why:
Code:
foreach var of varlist `contvarlist' { di "`var'" }
Code:
ds `catvarlist'
If it's helpful, catvarlist is:
Code:
foreach v of var *{ inspect `v' if r(N_unique)<10 { local catvarlist `catvarlist' `v' } }
Thank you!
-Reese
v14.2
Comment