Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is difference between sas rename and lable?

Answer Posted / anuj kashyap

SAS rename is used for variable renaming while lables is
used to define/alter the lables of the vaiables

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

for report generation which one you used proc report or data_null_?

7929


how can you create zero observation dataset? : Sas programming

1200


what is sas metadata server? : Sas-di

1153


what is data access? : Sas-di

1176


please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??

2132


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.

2244


What is data _null_?

1193


What do you know about sas data set?

1182


what is PhaseIII, ODS, TLG, Macro and Proc in SAS

4591


Explain how merging helps to combine data sets.

1104


What is a macro routine?

2782


Mention what is the difference between nodupkey and nodup options?

1058


Tell me about % include and % eval? : sas-macro

1187


Name and describe few sas character functions that are used for data cleaning in brief.

1179


how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5

2152