What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / jothi sankar
INFILE statement
and
INPUT statement
| Is This Answer Correct ? | 33 Yes | 2 No |
Post New Answer View All Answers
what are informats in sas? : Sas-administrator
What is Linear Regression?
Describe a time when you were really stuck on a problem and how you solved it?
Approximately what date is represented by the SAS date value of 730?
what is treatment emergent events and treatment emregent adverse event
What do the SAS log messages "numeric values have been converted to character" mean?
Which statement does not perform automatic conversions in comparisons?
how would you create multiple observations from a single observation? : Sas programming
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
Difference between informat and format?
Mention the difference between ceil and floor functions in sas?
What is the difference between order and group variable in proc report?
Explain the special input delimiters used in sas programming.
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.
How does the internal authentication work in sas? : sas-grid-administration