Which procedure we use if statement? As per my knowledge we don't use if statement in procedures? Why we don't use if statement in procedure?
Simple. Procedures are pre-fabricated modules that accept a limited set of parameters, the data step is undetermined and compiled.
The very brief picture: In a DATA step, IF deletes observations that have already been read in. The deletion can be based on original values in the observation, or can be based on values calculated along the way by the DATA step.
However, the WHERE statement subsets observations before they get read into the DATA step. By subsetting earlier, the WHERE statement (in many cases) is faster than the IF statement. In addition, the WHERE statement is available for procedures as well as the DATA step. Since procedures don't calculate new variables, and procedures have the WHERE statement available, there is no need for an IF statement there.
Actually, a number of procedures use IF statements. They use a system called CMP that provides programming capabilities. Here is one example, NLIN. https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_nlin_sect01... I know some of the OR procs have complicated syntax too, so they probably do. IML of course does. Look at the documentation, it will tell you. There might be a list of CMP procs somewhere. I could more easily check if I were in my office. Most procedures do not use IF statements.
To subset data many procedure allow for a WHERE statement (which is more like SQL syntax).
When working with SAS tables you can also use a WHERE statement as data set option to subset records:
Proc <some proc> data=source(where=(<condition>)); ...
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.