how we can call macros with in data step?
Answer Posted / daya
by using symput command
| Is This Answer Correct ? | 3 Yes | 7 No |
Post New Answer View All Answers
what is sas and what are the functions? : Sas-administrator
Why and when do you use proc sql?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
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.
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
why is sas data integration studio important? : Sas-di
What is proc sort?
How to test the debugging in sas?
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
What is the role of sas grid administrator? : sas-grid-administration
what is function of retain statment
Give some ways by which you can define the variables to produce the summary report (using proc report)?
Tell me more about the parameters in macro? : sas-macro
What does proc print, and proc contents are used for?
what is factor analysis? : Sas-administrator