The following SAS program
validates CDISC SDTM data that is stored in the SAS data set RESULTS.AE:
-
The LIBNAME statement
assigns the libref RESULTS to the physical location of the input SAS
data set to be validated.
-
The PROC CDISC statement
specifies CDISC SDTM as the model.
-
The SDTM statement specifies
the SDTM version number.
-
The DOMAINDATA statement
specifies the SAS data set to be validated, the two-character domain
code, and the domain model type.
libname results 'C:\Myfiles\'; 1
proc cdisc model=sdtm; 2
sdtm sdtmversion="3.1"; 3
domaindata data=results.AE domain=ae category=events; 4
run;
libname results clear;