how do u validate the program which u have written.
Answer Posted / 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 |
Post New Answer View All Answers
What do the mod and int function do? : Sas programming
What is the differnce between SDTM 3.1.2 to 3.1.1 version
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
Are you sensitive to code walk-throughs peer review or QC review?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
What is the function of output statement in a SAS Program?
explain the difference between proc means and proc summary?
Mention the difference between ceil and floor functions in sas?
describe the interaction table in sas di? : Sas-di
How long can a macro variable be? A token? : sas-macro
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
What is the use of divide function?
What is the maximum length of the macro variable? : sas-macro
What versions of SAS have you used (on which platforms)?
Describe crosslist option in tables statement?