what is pdv? how it is related to input buffer in sas?

Answer Posted / nanda katepalli

PDV is the program Data Vector. It takes each observation at
a time and allocates the length given in the input
statement.The allocation of spaces is done in the
compliation phase and the variables goes in it at the
execution phase.
Example:Builder builds the house but it is used by the people.
It has 2 variables by default which are _n_ and _error_.
_n_ gives us the observation number.
_error_ if their is no error then it is 0 or else it shows 1
even though we have 'n' no.of errors.
And then it creates 'n' no.of variables specified in the
data statement.
Input buffer is only needed for non sas files to
read the raw data and store in it. Where as, sas files do
not need the input buffer.
Example: Converting an Excel file into a sas file i.e while
converting it needs some space for storage.

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the scrubbing procedures in sas?

559


what are the categories that sas informats are used to the place the data? : Sas-administrator

603


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1787


how to read the variables in sas? : Sas-administrator

543


What are the default statistics for means procedure?

629






Give some examples where proc report’s defaults are same as proc print’s defaults?

624


What is PDV?

711


do you prefer proc report or proc tabulate? Why? : Sas programming

561


Explain how merging helps to combine data sets.

602


What makes sas stand out to be the best over other data analytics tools?

572


How to include or exclude specific variables in a data set?

625


: and & modifiers.

854


what is the primary data source for the wrs? : Sas-bi

642


what is the effect of the options statement errors=1? : Sas programming

573


What are all the problems you faced while validating tables and reports?

2993