Previous Page | Next Page

Introduction to the CDISC Procedure

Overview of PROC CDISC Syntax

The syntax for PROC CDISC depends on the following:

The following PROC CDISC code shows the syntax that is required to import an XML document that conforms to CDISC ODM version 1.2:

proc cdisc model=odm read=xmlinp;
   odm odmversion="1.2";
   clinicaldata out=results.ae sasdatasetname="AE";
run;

The following PROC CDISC code shows the syntax that is required to validate a SAS data set that conforms to CDISC SDTM version 3.1:

proc cdisc model=sdtm;
   sdtm sdtmversion="3.1";
   domaindata data=results.ae domain=ae catagory=events;
run;

Previous Page | Next Page | Top of Page