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

Is it possible to do sorting tranformation in charecter variable??if can tell me one eg..

1 Answers  


what is intially documentation for a sas programmer?

2 Answers   Accenture,


Name the option to produce a frequency line items rather that a table.

2 Answers  


How do you add a prefix to some or all variables in a dataset using a SAS macro?

2 Answers  


what are validation tools that are used in sas? : Sas-administrator

0 Answers  






how the sas basic syntax style described? : Sas-administrator

0 Answers  


what is the usage for assigning error=1 in a dataset ?

2 Answers   Satyam,


How did you use the round function?give an example(don't say it will round to the nearest intger) eg1:round(84.55,.1) =84.6 eg2:round(92.64,.1)=92.6,How it is happening like this tell me the logic,that is how the round function works when we have deimal values?

2 Answers   BoA,


data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.

2 Answers  


Explain how you can debug and test your SAS program?

0 Answers  


what is the difference between informat$8. $char8.

3 Answers   SAS,


1.How to draw pivot tables in Excel by using SAS and in which version we can use VB script for to draw pivot tables in Excel? Answer with example data. 2.What are the advantages of _NULL_ in Data steps? Can we use _NULL_ in Proc steps also? 3. How to call the macro variable into Data Steps? 4. Can we draw pivot tables in Excel using Proc SQL? Please post answers for the above questions with suitable examples, and how to use VB script for Excel using SAS.

1 Answers  


Categories