In the flow of DATA step processing, what is the first
action in a typical DATA Step?
Answer Posted / ravi
When you submit a DATA step, SAS processes the DATA step and
then creates a new SAS data set
Compilation Phase
Execution Phase
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what are 5 ways to perform a table lookup in sas? : Sas-administrator
What is connection profile? : sas-grid-administration
What is program data vector (pdv) and what are its functions?
Which command is used to perform sorting in sas program?
Have you used macros? For what purpose you have used? : sas-macro
Do you need to rearrange the order of the data for the report?
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.
Give e an example of..
How to sort in descending order?
what are informats in sas? : Sas-administrator
what type of graphs we will create(for 2+years candidates)?
In ARRAY processing, what does the DIM function do?
how does sas handle missing values in formats? : Sas programming
Enlist the syntax rules followed in sas statements.
What is the use of PROC gplot?