Identify statements whose placement in the DATA step is
critical?
Answer Posted / sasfaqs
input is the critical step
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Explain the difference between informat and format with an example.
Can you suggest us materials for sdtm mapping?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
What versions of SAS have you used (on which platforms)?
What is the general format of function in sas? : sas-grid-administration
What was the last computer book you purchased? Why?
What is the function of output statement in a SAS Program?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
Are you involved in writing the inferential analysis plan? Tables specfications?
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.
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
What are the uses of sas?
How do you define proc in sas? : sas-grid-administration
what r the job openings SAS for fresher graduates !
Have you ever used the SAS Debugger?