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>)); ...
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.