What is difference between rename and lable in sas?

Answer Posted / chandra

Rename permanently changes the variable name and where as
lable gives the label to the variable

Is This Answer Correct ?    17 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?

638


what can you learn from the sas log when debugging? : Sas programming

612


describe the interaction table in sas di? : Sas-di

595


What are the different types of sas functions?

608


Describe a time when you were really stuck on a problem and how you solved it?

2207






Explain what is SAS informats?

627


which date functions advances a date time or date/time value by a given interval? : Sas programming

540


How we can call macros with in data step? : sas-macro

617


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1803


Name few SAS functions?

670


How do you add a number to a macro variable? : sas-macro

545


I have a dataset concat having a variable a b & c. How to rename a b to e & f?

762


I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry

1329


explain about sas business intelligence? : Sas-bi

598


How is character variable converted into numeric variable and vice versa?

599