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
How to limit decimal places for variable using proc means?
Describe the ways in which you can create macro variables?
describe about metadata object? : Sas-di
What is the maximum length of the macro variable?
What is maximum number of rows and cols can be handled in SAS?
What is program data vector (pdv)?
How would you identify a macro variable? : sas-macro
Describe the ways in which you can create macro variables? : sas-macro
explain about various caches available in data integrator? : Sas-di
what is null hypothesis? why do you consider that?
How can you create a macro variable with in data step? : sas-macro
In proc transpose and data step with arrays which one you pick?
What is the use of stop statement?
What Proc glm does?
What are common programming errors committed in sas