What is the difference between an informat and a format?
Name three informats or formats.
Answer Posted / 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 |
Post New Answer View All Answers
what is the use of sas management console? : Sas-di
What is SAS? What are the functions does it performs?
What commands are used in the case of including or excluding any specific variables in the data set?
Define run-group processing?
Difference between nodup and nodupkey options?
for report generation which one you used proc report or data_null_?
Intern stastical programmer written test
Name few SAS functions?
What are the uses of sas?
How substr function works in sas?
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
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.
How does the internal authentication work in sas? : sas-grid-administration
Have you used macros? For what purpose you have used? : sas-macro