Answer Posted / rc
1. Reprogram and compare output.
2. Check log to see no warnings, errors.
etc.
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
What function CATX syntax does?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
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.
Describe the function and untility of the most difficult SAS macro that you have written.
What is the use of %include statement?
explain what is data set in sas? : Sas-administrator
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
How can you limit the variables written to output dataset in data step?
why is a stop statement needed for the point=option on a set statement? : Sas programming
How would you invoke a macro? : sas-macro
What does the RUN statement do?
Differentiate input and infile.
what are the types of interactive display types? : Sas-bi
Differentiate between sas functions and sas procedures.