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 |
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
how can you create zero observation dataset? : Sas programming
What commands are used in the case of including or excluding any specific variables in the data set?
What is the purpose of the trailing @? The @@? How would you use them?
How would you keep from overlaying the a SAS set with its sorted version?
How would you code a merge that will keep only the observations that have matches from both sets?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
How would you create multiple observations from a single observation?
what is the difference between compiler and interpreter? give any one example (software product) that act as a interpreter?
36 Answers Accenture, College School Exams Tests, CTS, IBM, IHRD, Infosys, Sylhet Engineering College, TCS, Wipro,
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
i have multiple .csv files in a unix directory. every file is having variable names as header.even for empty file also. suppose take 3 files a.csv b.csv c.csv a.csv contains data as name;age,salary; raja;34;4000; ravi;33;5000; kumar;25;3000; b.csv contains data as name;age,salary; ajay;40;4500; and c.csv contains name;age,salary; (only headers) Now i want to import and append all these files in to a single dataset. i tried infile statement with *.csv to import all at a time. but i m not getting correct data. please help me . its urgent. thank you in advance
In which format does Date stores in sas..? What is the use of DATE in SAS.?