How to get any kind of data in SAS? Is it possible to take
data from notepad in SAS?
Answer Posted / mr.b
Data sample_accounts;
INFILE "C:\Mydata\sample_accounts.txt";
INPUT Account 1-7 OpenDate $ 9-17 StatusCode $ 21-22
CreditLimit 25-29;
RUN;
tis will be as i know.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
Mention sas system options to debug sas macros.
What is the role of sas grid administrator? : sas-grid-administration
Give some examples where proc report’s defaults are different than proc print’s defaults?
Mention few capabilities of sas framework.
How sas treats the dsd delimiters?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
Explain what is SAS informats?
Give some examples where proc report’s defaults are same as proc print’s defaults?
what can you learn from the sas log when debugging? : Sas programming
what are some differences between proc summary and proc means? : Sas programming
Explain the difference between using drop = data set option in set and data statement?
what is factor analysis? : Sas-administrator
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
If you were told to create many records from one record, show how you would do this using array and with proc transpose?