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 |
Differentiate between proc means and proc summary.
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
Tell me more about the parameters in macro? : sas-macro
what are the benefits of data integration? : Sas-di
What is the order of evaluation of the following operators + - * / ** () ???
What is a method to debug and test your SAS program?
explain the proc in sas? : Sas-administrator
Describe the function and untility of the most difficult SAS macro that you have written.
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
What is the difference between an informat and a format. Name three informats or formats.
Hi... this is chandu, did MSc Microbiology, trying to get job in SAS tool, PLZ Tell me whether IT industries will give consider my education to gain a job....?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?