What are the analysis datasets created, and what are the new variables created in CLINICAL SAS
Answer / swaroopmunna
VISIT, VITAL & EVENTS analysis datasets created.
| Is This Answer Correct ? | 0 Yes | 3 No |
Best trainer in hyderabad for sas banking.if any one have details pls provide contact details.
WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.
What is the difference between order and group variable in proc report?
what is hierarchy flattening? : Sas-di
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
Why double trailing @@ is used in input statement?
why a stop statement is needed for the point= option on a set statement?
What is the work of tranwrd function?
I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?
why is sas considered self-documenting? : Sas programming
What is program data vector (pdv) and what are its functions?
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.