what is conditional processing?
Answers were Sorted based on User's Feedback
Answer / xxx
mainly two types of conditions we are using,
Data step and Proc SQL coditions,
1. Datastep
--> where, if then else (nothing but filter conditions).
2. Proc SQL;
--> Case, When then else conditions.
loop coditions.
In macros we can use any kind of filter conditions.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / solasa
use "IF ,IF THEN,CASE,WHERE " terms to subset conditionally.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / beula.koduri24
macro facilty can control some portions of the sas program,based on a specfic conditions known as conditional processing.
| Is This Answer Correct ? | 2 Yes | 8 No |
Give e an example of..
how to change the execute of macro
Explain the difference between informat and format with an example.
What would be the value of month at the end of data step execution and how many observations would be there?
what is the difference between sas and other datawarehousing languages?what are the advantages of sas over them?
Describe 5 ways to do a “table lookup” in SAS?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set?
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
how can u create zero observation dataset?
what are the differences between proc report and proc tabulate?
How to convert .xls file into CSV format?