I was wondering if someone can explain what "control" means in the following:
"By default, at the end of the DATA step, the values in the program data vector are written to the data set as an observation, control returns to the top of the DATA step..."
It appears to have something to do with the flow of processing, but what is control? The computer processor? Thank you for your help!
Program control is old school terminology for what part of the program is currently executing. So a branching statement like an IF or a GOTO changes program control. Look at this USENET post from 1983 for an example usage.
In simple terms SAS has come to the end of the process for the data currently in the PDV and now will start again at the top of the data step code with the next refresh of data in the PDV.
Note that statements like Format and Length, which relate to the configuration of the data, and those like Retain and Array, which relate to the configuration of the process, are not executed each time. They only need to be used once, before the first loop through the program code.
Richard
Tom and RichardinOz,
Thank you for your responses. They were very helpful!
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.