I'm not sure how to phrase this question but I want to use all the existing variable labels but add the same additional information at the end of all the variable labels from the same dataset. For example it would be something like
variable1 "Variable 1"
variable2 "Variable 2"
to
variable1 "Variable 1 residential"
variable2 "Variable 2 residential"
The farthest I have gotten is using a foreach loop to use the variable name and add the same label extension to all the variables but not the original variable labels
This is a sample of code for how far I've gotten
clear
sysuse auto.dta
foreach x of varlist _all {
local label: variable label `x'
label var `x' "`x' Residential"
}
Any help for how to get the original variable labels with the "Residential" added would be appreciated.
Related Posts with Add same extension to existing variable labels
computing marginal effects using logit fixed effects modelDear Statalist, My dataset is crossectional, but I want to include industry and year fixed effects.…
splitting time spanGood afternoon, I have a problem in constructing my dataset on stata. I have repeated events for eac…
Computer says 'no' - How to allocate more memory for STATA[Please note: I've looked at a few other forums with similar problems, but the solutions don't seem …
Gini coefficients with confidence intervalsDear Statalisters, I have conceptual and Stata-oriented questions about generating (and later plott…
Transforming a string variable into a time/dateI have a string variable called month containing; "Jan 2018" till "Dec 2020". How do I separate this…
Subscribe to:
Post Comments (Atom)
0 Response to Add same extension to existing variable labels
Post a Comment