What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / ram
proc import is utilities procedure...so infile is correct
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Are you sensitive to code walk-throughs peer review or QC review?
What do the mod and int function do? : Sas programming
how does sas handle missing values in formats? : Sas programming
Compare sas with other data analytics tools.
Describe the ways in which you can create macro variables?
what versions of sas have you used (on which platforms)? : Sas programming
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
What would be the value of month at the end of data step execution and how many observations would be there?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
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 a method to debug and test your SAS program?
What can be the size of largest dataset in SAS?
explain what is factor analysis? : Sas-administrator
In proc transpose and data step with arrays which one you pick?
What is program data vector (pdv) and what are its functions?