How to get any kind of data in SAS? Is it possible to take
data from notepad in SAS?
Answer Posted / sas29
Data sample_accounts;
INPUT Account 1-7 OpenDate $ 9-17 StatusCode $ 21-22
CreditLimit 25-29;
CARDS;
1234670 11-Sep-04 Z 2000
1234671 12-Sep-04 3000
1234672 13-Sep-04 Z 2500
1234673 14-Sep-04 T 3200
1234674 15-Sep-04 8000
run;
method1
--------------------------
Data sample_accounts;
INFILE "C:\Mydata\sample_accounts.txt";
INPUT Account 1-7 OpenDate $ 9-17 StatusCode $ 21-22
CreditLimit 25-29;
RUN;
method 2
-----------------------------------
filename sacc "D:\Mydata\sample_accounts.txt";
Data sample_accounts;
INFILE sacc ;
INPUT Account 1-7 OpenDate $ 9-17 StatusCode $ 21-22
CreditLimit 25-29;
RUN;
method 3;
use proc import:
method 4:
use proc cimport for xpt files into sas
| Is This Answer Correct ? | 28 Yes | 0 No |
Post New Answer View All Answers
how to debug and test the sas program? : Sas-administrator
what does the run statement do? : Sas programming
What versions of SAS have you used (on which platforms)?
How are numeric and character missing values represented internally?
what is ae onset date n what is RDS
explain what is factor analysis? : Sas-administrator
Mention how to limit decimal places for the variable using proc means?
If you could design your ideal job, what would it look like?
Which function is used to count the number of intervals between two sas dates?
What do you know about sas and what we do? : sas-grid-administration
what is enterprise guide? What is the use of it? : Sas programming
Give e an example of..
what is the purpose of _error_? : Sas programming
What function CATX syntax does?
What does P-value signify about the statistical data?