what kind of variables are collected in AE dataset?

Answer Posted / sandeep

Along with the identifier variables AE dataset also contains
reported term of AE,preferred term, body system or organ
class, start date, end date, ongoing, severity, relationship
to treatment, action taken, outcome, any discontinuation due
to AE

Is This Answer Correct ?    13 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?

642


How is character variable converted into numeric variable and vice versa?

602


How will you generate test data with no input data?

565


Did you used proc test? when?

1577


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

549






What is the different between functions and PROCs that calculate the same simple descriptive statistics?

1233


What system options would you use to help debug a macro? : sas-macro

644


What is the maximum length of the macro variable? : sas-macro

627


for whom is sas data integration studio designed? : Sas-di

558


Mention sas system options to debug sas macros.

664


Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?

1470


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.

1803


What are the ways to do a “table lookup” in sas?

595


Give some examples where proc report’s defaults are same as proc print’s defaults?

646


Tell e how how dealt with..

1775