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 |
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 set to a second data set, and the non-matches of the right-most data set to a third data set.
why is the use of Retrive statement and give me with example?
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn’t have a value?
Mention sas system options to debug sas macros.
Hi , which book should i refer to for preaparing SAS statistical Exam. Searched a lot on books but still did n't find relevant books
How to sort in descending order?
how to generate means for every subject;
what does .. meant in sas macros
what is the difference between %put and symbolgen?
Name statements that function at both compile and execution time.
How do I CREATE an external dataset with sas code? I would like to create within a sascode a non-exsistent textfile on the host. So I am not forced to create the file befor filling it.
what is Global Symbol table and Local symbol table?