Baseline definition in your study
Answer Posted / rg
Baseline is the target population on which analysis to be carried out. For example: Analysis to be done on Male heart patient of age 55 to 60(both inclusive) who are non smoker, then your filter condition to create baseline population are
Patient type = 'Heart Patient'
Gender = 'M'
Age between 55 and 60
Smoker = 'N'
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
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.
name the scheduler for scheduling job and explain the scheduler? : Sas-di
What are the statements that are executed only?
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
What is the order of application for output data set options, input data set options and SAS statements?
Give e an example of..
Mention what are the data types does SAS contain?
what is the difference between nodup and nodupkey options? : Sas programming
What would be the value of month at the end of data step execution and how many observations would be there?
What do you know about sas data set?
What are common programming errors committed in sas
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
it will become easy if uuu provide website linkssss and list of consultanciessssss
How do you debug and test your SAS programs?
How to create list output for cross-tabulations in proc freq?