I used the following code to rename a variable. Why original name come up under 'Label' when using Proc Contents (i.e., variable name becomes uncon and Label is allreq.
What is a label used for?
data rename;
set orig;
rename allreq=uncon;
run;
Thanks!
because the label isn't the variable name automatically. You need to change it as well.
Variable names and labels aren't tied to the same thing, which is nice in some circumstances and annoying in others.
data rename;
set orig;
label allreq='uncon';
rename allreq=uncon;
run;
If you do not explicitly set the variable label, then the variable name is used. So in that case whern the variable is renamed, the label should change. However, when you explicitly set the label for the variable (using a label statement) it is unchanged by a rename.
Richard
Thanks everyone! Suggestions on resources to learn more about utility of labels?
3 things to know:
1. attrib _all_ label=''; removes all labels
2. vlabel will get the name of the label
3. label var="my_label" sets a label
They're not very complex. I wish there was a way to set labels more easily, but that's about it.
You can always search google : variable label site:lexjansen.com to see what else there is.
Good luck.
Thanks so very much!!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.