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 |
How can you put a "trace" in your program?
What is the difference between input and infile statement?
Code a PROC MEANS that shows both summed and averaged output of the data.
What would you change about your job?
What makes sas stand out to be the best over other data analytics tools?
what does .. meant in sas macros
What is the purpose of the trailing and How would you use them?
What is SAS Information Map Studio and its purpose ?
what is data governance? : Sas-di
Can anyone help to find a statement to get all the predefined formats?
3 Answers Verinon Technology Solutions,
how does sas handle missing values in an update? : Sas programming
What are the table names in oracle database...?