how do you read binary data in sas?

Answers were Sorted based on User's Feedback



how do you read binary data in sas?..

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

how do you read binary data in sas?..

Answer / koduri

using date format
input date ib4.;

Is This Answer Correct ?    7 Yes 6 No

how do you read binary data in sas?..

Answer / gk

u can also asci format also to read the binary data.

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More SAS Interview Questions

What are SAS/ACCESS and SAS/CONNECT?

1 Answers  


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

7 Answers  


How can I remove header from output data set?

1 Answers  


How do you delete duplicate observations in sas?

1 Answers  


What is the use of PROC gplot?

1 Answers  


i have a data set with 20 observations i want label from 8 to 15 observations ? how you create this one.

6 Answers   CTS,


what is hierarchy flattening? : Sas-di

1 Answers  


Give an example where SAS fails to convert character value to numeric value automatically?

1 Answers  


What is factor analysis?

1 Answers  


how to delete the duplicates by using proc sql?

3 Answers   Genpact,


what is data governance? : Sas-di

1 Answers  


what is sas olap server? : Sas-di

1 Answers  


Categories