In the flow of DATA step processing, what is the first
action in a typical DATA Step?
Answer Posted / latha reddy
1)Compilation Phase
When you submit a DATA step,it reads the input statements
it creates an input buffer and brings the variables and
observations.it is a logical memory area.
and pdv brings the observations at a time from input buffer
and checks the errors.
PDV contains 2 automatic variables _n_ & _error_ ,these
checks the erros in observations.
_n_ : indicates the no of obs.
_error_: 1 if error occured
0 if no error
After that it assigns the datavalues to appropriate
variable and build a sas dataset.
2)Execution Phase
Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
Name types of category in which SAS Informats are placed?
What Proc glm does?
What was the last computer book you purchased? Why?
Can you suggest us materials for sdtm mapping?
What does PROC print, and PROC contents do?
What are the difference between the sas data step and sas procs?
How do dates work in sas?
What commands are used in the case of including or excluding any specific variables in the data set?
Describe a time when you were really stuck on a problem and how you solved it?
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.
Are you involved in writing the inferential analysis plan? Tables specifications?
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
Mention sas system options to debug sas macros.
What can you learn from the SAS log when debugging?
Tell me more about the parameters in macro? : sas-macro