Answer Posted / sireesha
Its better to avoid hardcoding as
--it overrides the database controls in clinical data
management.
----data often change in a trial over time, and the
hardcode that is written today may not be valid in the
future.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do you know about sas and what we do? : sas-grid-administration
Differences between where and if statement?
how does sas handle missing values in procs? : Sas programming
Differentiate between format and informat? : 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.
how do you debug and test your sas programs? : Sas programming
In proc transpose and data step with arrays which one you pick?
what is sas data set?
how does sas handle missing values in a merge? : Sas programming
where are dashboard components are created and maintained? : Sas-bi
Explain data_null_?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
sas implementing companies in pune implementing clinical projects if anyone knows plz send ans immediately
What is data _null_?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation