what is the primary variable in your study?
Answer Posted / sai
Try to answer these questions since you may face any of
these in clinical SAS domain round.
for further info feel free to write me at
sasclinicals2010@gmail.com
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
What is the difference between proportion and average?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
Mention how to limit decimal places for the variable using proc means?
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
what is the difference between nodup and nodupkey options? : Sas programming
How would you identify a macro variable?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
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.
Which function is used to count the number of intervals between two sas dates?
What is the difference between input and infile statement?
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
Name validation tools used in SAS
Explain the purpose of retain statement.
what are the scrubbing procedures in sas? : Sas programming