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
for report generation which one you used proc report or data_null_?
how can you create zero observation dataset? : Sas programming
what is sas metadata server? : Sas-di
what is data access? : Sas-di
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
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.
What is data _null_?
What do you know about sas data set?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
Explain how merging helps to combine data sets.
What is a macro routine?
Mention what is the difference between nodupkey and nodup options?
Tell me about % include and % eval? : sas-macro
Name and describe few sas character functions that are used for data cleaning in brief.
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