what other SAS features do you use for error trapping and
data validation?
Answers were Sorted based on User's Feedback
Answer / guest
We use proc sql,proc univariate and proc freq for data
validation
Is This Answer Correct ? | 0 Yes | 1 No |
How to display duplicate observations in data?
How would you remove a format that has been permanently associated with a variables?
how can you create zero observation dataset? : Sas programming
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
Are you sensitive to code walk-throughs peer review or QC review?
What is by-group processing?
What type of tables you are using in YOUR reporting..???
2 Answers GSK GlaxoSmithKline,
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15
WHAT IS LAG FUNCTION ? WHERE CAN YOU IMPLEMENT THIS FUNCTION?
what is data governance? : Sas-di
Differentiate between proc means and proc summary.
One way of creating a new variable in Macros is by % Let....What is the other way..?