|
SAS Recoding techniques
Recoding can take place in a data step (as opposed to PROCs). For example, the blue part is called RECODING.
data new;
set here.datasetA;
X=Y*100;
B=A+4;
C=A+B;
run;
|
|
|
|
|
|
|
IF X IN (0, 1) THEN Y = 0;
|
|
|
|
|
|
|
|
|
|
Add your content here
|
Add your content here
|
Add your content here
|
|