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
What is the use of PROC gplot?
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
what are sas/access and sas/connect? : Sas programming
How can you limit the variables written to output dataset in data step?
How do you use the do loop if you don’t know how many times you should execute the do loop?
Tell me about % include and % eval? : sas-macro
what is program data vector? : Sas-administrator
What are the difference between sas functions and procedures?
what techniques and/or procs do you use for tables? : Sas programming
What system options would you use to help debug a macro? : sas-macro
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
Explain what Proc glm does?
Describe the ways in which you can create macro variables?
Where do you use proc means over proc freq?