what are different analysis datasets you created and what are the new variables created
Answer Posted / ramkgupta
In Clinical SAS, analysis datasets are the highest level datasets, one pro away to produce TLF's. these datasets stores almost all information related to specific kind. for example: ADSL, ADAE, ADCM, ADLB....etc. Here ADSL stores all basic information regarding subjects in the study. ADAE stores all adverse events related information.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How we can create SAS USER DEFINED CODE?
explain the key concept of sas? : Sas-administrator
What are the data types does SAS contain?
What is the length assigned to the target variable by the scan function?
Can you explain the process of calendar?
what is the primary data source for the wrs? : Sas-bi
Explain the special input delimiters used in sas programming.
for what purpose would you use the retain statement? : Sas programming
What is SAS?
how do you test for missing values? : Sas programming
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 could you generate test data with no input data? : Sas programming
what is program data vector? : Sas-administrator
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
explain the use of % includes a statement in sas? : Sas-administrator