What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / venki
input & infile
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
In proc transpose and data step with arrays which one you pick?
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
What is PROC in SAS?
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.
Explain how merging helps to combine data sets.
Which function is used to count the number of intervals between two sas dates?
Explain proc univariate?
what can you learn from the sas log when debugging? : Sas programming
What is the use of %include statement?
What are the table names in oracle database...?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
Give e an example of..
Explain the purpose of substr functions in sas programming.
What do you code to create a macro? : sas-macro