What is the Program Data Vector (PDV)? What are its functions?
Answer Posted / pambrose
Source: SAS book
The PDV contains all the variables in the input data set, the variables created in DATA step statements, and the two variables, _N_ and _ERROR_, that are automatically generated for every DATA step. The _N_ variable represents the number of times the DATA step has iterated. The _ERROR_ variable acts like a binary switch whose value is 0 if no errors exist in the DATA step, or 1 if one or more errors exist
Variables that are created by the INPUT and the Sum statements are set to missing initially. Note that in this representation, numeric variables are initialized with a period and character variables are initialized with blanks. The automatic variable _N_ is set to 1; the automatic variable _ERROR_ is set to 0.
The variable TeamName is marked Drop in the PDV because of the DROP= data set option in the DATA statement. Dropped variables are not written to the SAS data set. The _N_ and _ERROR_ variables are dropped because automatic variables created by the DATA step are not written to a SAS data set
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
For what purpose would you use the RETAIN statement?
how does sas handle missing values in sort order? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
Tell e how how dealt with..
Explain the main difference between the sas procedures and functions? : Sas-administrator
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
What is a method to debug and test your SAS program?
What is the use of function Proc summary?
How would you define the end of a macro?
What are the data types does SAS contain?
What is data _null_?
How can you limit the variables written to output dataset in data step?
Give some examples where proc report’s defaults are same as proc print’s defaults?
what is data governance? : Sas-di
How do you add a number to a macro variable? : sas-macro