What is the difference between an informat and a format?
Name three informats or formats.
Answers were Sorted based on User's Feedback
Answer / sheetal
informat: to read the data in SAS data set
format: to write the SAS data set
Is This Answer Correct ? | 28 Yes | 4 No |
Answer / m
informat:it is an instruction used by sas to read the data.
eg:$w., $CHARw., commaw.d
format: instruction used by SAS to write the data value.
eg: date9., best., mmddyy10.
Is This Answer Correct ? | 22 Yes | 2 No |
Answer / falguni mathther
informats are generally used to read the data from
different files, while formats are used as instructions to
generate output in desired listing layout.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / chandu
Informat tells SAS how to read the raw data,
Format tells SAS how to print the raw data into user
readable pattren....
Chiranjeevi garu, for your information,
Format statement can be used in both DATA step as well in
PROC step.....
Is This Answer Correct ? | 8 Yes | 5 No |
Answer / yugesh
A format determines how a value is displayed.An Informat
determines how a value is read
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shweta
informat: Non standard value to standard
format: Read standard value .
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ganesh
Informat is used for read and storing the data values.
format is used for variable to be printed.
Date informat
numeric informat
character informat
Is This Answer Correct ? | 11 Yes | 12 No |
Answer / deepak dewan
In Informat SAS reads the raw data,
Format tells SAS how to print the raw data
e.g mmdddyy.
date9.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / tvr kumar
Informate determind how raw data values read and store in
to sas.
formates determind how sas data values print and display.
Is This Answer Correct ? | 3 Yes | 5 No |
Answer / vemula
informat is an instruction given to sas to read the data
values into variables
ex: date9.
ddmmyyw.;
char6.;
format is and instruction given to sas to print the
variable in to datavalues
ex; date8.
ddmonyy.;
commaw.;
dollarw.;
Is This Answer Correct ? | 2 Yes | 5 No |
Explain how merging helps to combine data sets.
Difference between informat and format?
what does the run statement do? : Sas programming
If you?re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
what is the Population you used in your project, is it ITT or PP?
0 Answers Accenture, Quintiles,
I need to find the numeric field which contains blank in between..Ex:123 456...there is blank in between the 123 456..I need to know if there is any SAS function to find a field.. Please suggest...
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
what are the considerations when picking a SAS/STAT procedure?
0 Answers Accenture, Quintiles,
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
how to import HTML files into SAS datasets?
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat