what is the basic structure sas administrator? : Sas-administrator
No Answer is Posted For this Question
Be the First to Post Answer
What does PROC print, and PROC contents do?
How would you code the criteria to restrict the output to be produced?
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.
What is SAS? What are the functions does it performs?
What is difference between sas rename and lable?
what are the advantages of using SAS in clinical data mangement? why should not we use other software products in managing clinical data?
What are common programming errors committed in sas
Explain input and put function?
What is connection profile? : sas-grid-administration
what is the usage for assigning error=1 in a dataset ?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable?
What is program data vector (pdv)?