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 |
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
explain what is data set in sas? : Sas-administrator
How can sas program be validated?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
firstobs and obs are working only option wise,but we are using infile statement with firstobs and obs in a statement wise? so firstobs,obs working at options and statemnts or not?
How did you use the round function?give an example(don't say it will round to the nearest intger) eg1:round(84.55,.1) =84.6 eg2:round(92.64,.1)=92.6,How it is happening like this tell me the logic,that is how the round function works when we have deimal values?
How do you connect the desktop application to metadata server? : sas-grid-administration
what is the difference between nodup and nodupkey options? : Sas programming
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
which stats created by proc means that are not created by proc summary or vice versa?
what are sas/access and sas/connect? : Sas programming
hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?