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


Please Help Members By Posting Answers For Below Questions

What is the difference between input and infile statement?

878


What are the statements that are executed only?

903


For clinical entire study how many tables will create approx?

1718


What is the difference between INPUT and INFILE ?

981


Explain the purpose of retain statement.

799


how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming

827


What is the good sas programming practices for processing large data sets?

869


Explain the use of proc print and proc contents?

727


What is the difference between %local and %global? : sas-macro

877


What would be the value of month at the end of data step execution and how many observations would be there?

793


Approximately what date is represented by the SAS date value of 730?

975


Why and when do you use proc sql?

967


what is the function of catx syntax? : Sas-administrator

852


how does sas handle missing values in a merge? : Sas programming

771


Explain what Proc glm does?

831