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 Global Symbol table and Local symbol table?
1.How to draw pivot tables in Excel by using SAS and in which version we can use VB script for to draw pivot tables in Excel? Answer with example data. 2.What are the advantages of _NULL_ in Data steps? Can we use _NULL_ in Proc steps also? 3. How to call the macro variable into Data Steps? 4. Can we draw pivot tables in Excel using Proc SQL? Please post answers for the above questions with suitable examples, and how to use VB script for Excel using SAS.
what is sas enterprise intelligence architecture? : Sas-bi
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
which domain is better in sas? clinical trails or banking
What is SAS?
Name validation tools used in SAS
If you?re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
How do you generate random samples?
what are system option ? give few examples ? what are dataset options and dataset statements ? if there is a keep option and keep statement ? which one is executed first ? Difference between a WHERE statement and IF statement ? what is the advantage of using WHERE statement option on the dataset ?
how do the in= variables improve the capability of a merge? : Sas programming
how to read character value without using substr function in sas ?