In the SAS Data step what is the difference between the
subsetting done by Where and subsetting done by If?
Answer Posted / gangadhar
Make sure you apply the following rules when determining
which approach to take when subsetting your data set using
the DATA step. If your subset condition does not meet the
requirements below, then the WHERE and IF statements should
produce identical results. For cases such as this, use the
WHERE statement since it is more efficient. Note that
having both WHERE and IF statements within the same DATA
step has a cumulative effect.
• Can use WHERE statement when only specifying data
set variables
• Use IF statement when specifying automatic
variables or new variables created within DATA step
• Use IF statement when specifying FIRST.BY or LAST.
BY variables
• Use IF statement when specifying data set options
such as OBS = , POINT = or FIRSTOBS =
• In general, use IF statement when merging data sets
to apply subset condition after merging data set
• Use WHERE statement when specifying indexes
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is program data vector (pdv)?
What are the advantages of using sas?
Where do you use proc means over proc freq?
What are the data types that sas contain?
What is the difference between order and group variable in proc report?
Have you ever used the SAS Debugger?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
What is the order of application for output data set options, input data set options and SAS statements?
What can be the size of largest dataset in SAS?
Are you involved in writing the inferential analysis plan? Tables specifications?
how many display types available in sas bi dashboard? : Sas-bi
how does sas handle missing values in procs? : Sas programming
Explain substr function?
What is the maximum length of the macro variable? : sas-macro
How necessary is it to be creative in your work?