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 the difference between %put and symbolgen? : sas-macro
how do we mail reports from SAS environment to our team leader
How to select the observations randomly from a SAS dataset
what does .. meant in sas macros
Does SAS ?Translate? (compile) or does it ?Interpret?? Explain.
what is the frontend and backend of sas? Is sas is a progaming langauge or tool? on which langauge sas depends?
what is the difference between infile and input? : Sas-administrator
What are the special input delimiters used in SAS?
What is highest missing value for numeric?
How would you delete observations with duplicate keys?
How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
How would you code a macro statement to produce information on the SAS log? This statement can be coded anywhere.