How to get any kind of data in SAS? Is it possible to take
data from notepad in SAS?
Answer Posted / nsb
Yes, we can read the data from notepad just like reading
data from from any other file formats by using INFILE
statement.
infile "...\....\xyz.txt";
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Mention few capabilities of sas framework.
How do dates work 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.
how will you locate the sas platform applications? : Sas-bi
What is the differnce between SDTM 3.1.2 to 3.1.1 version
What is the maximum and minimum length of macro variable
Compare sas with other data analytics tools.
For what purpose would you use the RETAIN statement?
what is SAS OPTIMIZATION?
What do you code to create a macro? : sas-macro
explain the key concept of sas? : Sas-administrator
What is data _null_?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What are the differences between proc means and proc summary?