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 to rearrange the data as our wish by using dataset block?
What is the basic syntax of a sas program?
What is the Program Data Vector (PDV) and What are its functions?
why only we use SAS? their r many programmin language like SPSS, Oracle... Why SAS?
what are input dataset and output dataset options?
How do you connect the desktop application to metadata server? : sas-grid-administration
what is the purpose of _error_? : Sas programming
What is Transaction...? And what are Comment, Roll back n Save point..?
What do the SAS log messages "numeric values have been converted to character" mean?
Which function is used to count the number of intervals between two sas dates?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
Diff between proc sql merge and join?