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
How to make a table with multiple variables?I want to make a table that looks like: Rate of Graduation (%) Parent’s Years of Education Tal…
Logit and Probit TableI want to estimate a regression (shown below on the table) and fill in the data points of the table …
encode and destringHi, this is Alice. I am constantly facing problems of destring a variable that contains both numeric…
Find outcome of the most recent and second most recent event within groupDear all, I am trying to find the outcomes of the most recent and second most recent events (in the…
Create a loop to repeat the same operation several timesGood morning, I'll explain my problem to you. I would like to create a loop to repeat the same opera…
Subscribe to:
Post Comments (Atom)
0 Response to Add same extension to existing variable labels
Post a Comment