What is the difference between an informat and a format.
Name three informats or formats.

Answers were Sorted based on User's Feedback



What is the difference between an informat and a format. Name three informats or formats...

Answer / selvakumar

informat - the format used to read the variable from raw
data
format - the format used to print the values of the variable
Informat ? ddmmyy10.,

Is This Answer Correct ?    72 Yes 9 No

What is the difference between an informat and a format. Name three informats or formats...

Answer / sas - user

Informats is used to read a data in a particular format.
Formats is used to write a data in a particular format.
Both informats and formats can be customized using the proc
format procedure. Some of the commonly used informats and
formats are MMDDYYw., DATEw., COMMAw.d, $w., TIMEw. to name
a few.

Is This Answer Correct ?    52 Yes 2 No

What is the difference between an informat and a format. Name three informats or formats...

Answer / harsha

Informat-Informat is used to read the non-standared
data
Format- Format is used to print the non-standared data

Is This Answer Correct ?    21 Yes 3 No

What is the difference between an informat and a format. Name three informats or formats...

Answer / sudheer

farmat is the option which is used to print the data in the
particular way, if you declare the format option in the
data set block it will stored permanenetly, were as if you
put the format in the procedure block, it will temparary
for the printing purpose.

informat is the option which is used to read the data from
the extral file or data lines(cards0, internal data.

Is This Answer Correct ?    16 Yes 5 No

What is the difference between an informat and a format. Name three informats or formats...

Answer / gagan deep semwal

An informat is an instruction used to read data values into
a SAS variable.In addition, if a variable has not yet been
defined, SAS uses the informat to determine whether the
variable ought to be numeric or character.

A format is defined as an instruction that SAS uses to
write data values. Formats are used to control the written
appearance of data values. Both informats and formats are
of the form: <$> name <w> . <d>

Is This Answer Correct ?    5 Yes 0 No

What is the difference between an informat and a format. Name three informats or formats...

Answer / l. zeenesh meitei

informat is always used with input statement as informat
should be equal to the raw data.

where as format starts with format and can be same or
different to the raw data.. as format is used when reading
created the dataset not the raw.

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More SAS Interview Questions

Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks

0 Answers   Axis Bank,


What are the difference between ceil and floor functions in sas?

0 Answers  


what is data governance? : Sas-di

0 Answers  


What is the different between functions and PROCs that calculate the same simple descriptive statistics?

0 Answers   Quintiles,


What is the use of PROC gplot?

0 Answers  






what is pdv? how it is related to input buffer in sas?

5 Answers   HSBC, Satyam,


Describe the function and untility of the most difficult SAS macro that you have written.

0 Answers  


what is the diff. b/w proc means and proc summary?

12 Answers   CitiGroup,


Which is the best training Institute for SAS Business Intelligence course?

6 Answers  


What are the difficulties u faced while doing vital signs table or dataset?

0 Answers  


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

0 Answers  


Can we replace a dataset into view?

6 Answers   CliniRx,


Categories