What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / sankar
using proc import procedure
synatax :for text file
proc import datafile='path' out=datasetname
dbms=dlm;
delimiter='specific delimiter';
run;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Have you ever used the SAS Debugger?
What is the difference between where and if statement?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
Name few SAS functions?
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
How to create list output for cross-tabulations in proc freq?
What are the data types does SAS contain?
what are some good sas programming practices for processing very large data sets? : Sas programming
explain what is data set in sas? : Sas-administrator
What are the uses of sas?
what is null hypothesis? why do you consider that?
What is the difference between SAS functions and procedures?
what is SAS OPTIMIZATION?
I have a dataset concat having variable a b & c. How to rename a b to e & f?