what is the diff b/w verification validation in sas
Answers were Sorted based on User's Feedback
Answer / pnprasad
Verification: After writing a program, if you want to check
is it correct or not. Ex. By using Debuging
Validation: Is the process, recorded evidence of the
actions in a sequence and gives the same outputs with out
any deviation of the given task (i.e accuracy, integrity
etc).
| Is This Answer Correct ? | 8 Yes | 0 No |
verification :
is the value is correct ot not
validation :
is the value is existable or not
EX:
0 <= p(x) <= 1
validation: value of p(x) must be lies between 0 and 1
other wise it's not validate result
verification: check again the calculation process to obtain
the valid value for p(x).......
p(x) means probability of x(Success)
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / srinivas,korasavada
simply
verification:more of sence of testing the accuracy of a
statement.
validation:more of sence declaring statement to be true
| Is This Answer Correct ? | 7 Yes | 1 No |
SAS System ?
what do you mean by data staging area? : Sas-di
What sas features do you use to check errors and data validation?
What versions of SAS have you used (on which platforms)?
when we are using the PROC TRANSPOSE? OBSERVATIONS are repeated then what will happen and what it will show in log window.
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?
What are Dashboard reports?And significance of these in analysis?
Explain how merging helps to combine data sets.
How do you debug and test your SAS programs?
What are all the problems you faced while validating tables and reports?
0 Answers Accenture, Quintiles,
What are the functions which are used for character handling functions?
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.