how do you read binary data in sas?
Answers were Sorted based on User's Feedback
Answer / april
proc cimport procedure allows us to convert a binary format
data into SAS dataset.
Syntax:
proc cimport infile= <binary format file> data=<dataset
name>;
run;
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / gk
u can also asci format also to read the binary data.
| Is This Answer Correct ? | 1 Yes | 8 No |
What is the difference between Regression and Logistic Regression? Can u explain the Assumptions/Conditions?
What are the joins,types of joins and thier functions?
How do you define proc in sas? : sas-grid-administration
firstobs and obs are working only option wise,but we are using infile statement with firstobs and obs in a statement wise? so firstobs,obs working at options and statemnts or not?
how to read the variables in sas? : Sas-administrator
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
How does the internal authentication work in sas? : sas-grid-administration
why is sas data integration studio important? : Sas-di
is data integration and etl programming is same? : Sas-di
How do i read multiple spaces in datasets?
how do you validate sas program?
How to get second top scorer student from a class- table having different sections A, B, C & D? each section has same number of student.