What is the difference between informat and format statement?
Answer Posted / ankit singh
Formats tells sas how to write the data to the output dataset and converts numeric to character value.
e.g. data out;
x=0;
format x date9.;
run;
Informats directs SAS to how to read the data from the source and converts charater to numeric value.;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What versions of SAS have you used (on which platforms)?
How can I remove header from output data set?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
What is the difference between match merge and one to one merge?
how does sas handle missing values in sort order? : Sas programming
What is the difference between one to one merge and match merge? Give an example.
How can you create a macro variable with in data step? : sas-macro
What do you know about symput and symget?
What Proc glm does?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
What is PROC in SAS?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
Explain data_null_?
Difference between SAS STATA & SPSS?
What is the difference between input and infile statement?