how do u validate the program which u have written.
Answer / solasa
A) by checking the ouput derived after running the program
there by checking the dataset varible names and missing values.
and also we can view the logwindow for error cheking.
U CAN see the warning messages when ever u find an error.
---------------------------------------------------------------
B) u can use PROC CDISC whether the program used vairble are
CDISC compliant.
checking the clinical dataset ompliant to CDISC standards or
not....
PROC CDISC MODEL = SDTM;
SDTM SDTMVersion = "3.1";
DOMAINDATA data = in.mh
domain = MH
category = events;
RUN;
-----------------------------------------------------------------
C)to compare two datasets u can use PROC COMPARE.
------------------------------------------------------------
D) USING SAS DEBUGGGER..
------------------------------------------------------------
C) check the structure of data using PROC CONTENT.
------------------------------------------------------------
e)proc format ;
/* CHECK A RANGE OF VALUES, DIFFERENTIATE MISSING */
value testv
2 - 8 = 'ok'
. = '*missing*'
other = 'INVALID';
-------------------------------------------------------
------
guys please reply if u find information in detail in
regarding this question.
| Is This Answer Correct ? | 9 Yes | 2 No |
what is sas and what are the functions? : Sas-administrator
What is the difference between %local and %global?
What is the differnce between SDTM 3.1.2 to 3.1.1 version
What are the parameters of scan function?
How would you compile all macros from a folder in a study, within the autoexec program?
firstobs and obs are working only option wise,but we are using infile statement with firstobs and obs in a statement wise? so firstobs,obs working at options and statemnts or not?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
Give some examples where proc report’s defaults are same as proc print’s defaults?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
What is univariate n where it can be used n how...?
What are the prime responsibilities of data integration administrator? : Sas-di
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro