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 |
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
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
what is data integration? : Sas-di
how does sas handle missing values in an update? : Sas programming
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
In the flow of DATA step processing, what is the first action in a typical DATA Step?
Mention how to limit decimal places for the variable using proc means?
what is the difference between informat$8. $char8.
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
Explain how you can debug and test your SAS program?
What is run-group processing?
is data integration and etl programming is same? : Sas-di