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
Explain by-group processing?
How many data types are there in SAS?
How to create a permanent sas data set?
what is null hypothesis? why do you consider that?
Mention the difference between ceil and floor functions in sas?
Differences between where and if statement?
What is SAS?
What does proc print, and proc contents are used for?
what are input dataset and output dataset options? : Sas programming
Describe the ways in which you can create macro variables? : sas-macro
what is factor analysis? : Sas-administrator
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
Explain how merging helps to combine data sets.