Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

does this code works and what happens in set line? Am i right, that key-option is destructive here?

data One(keep= f1 f2);  
   attrib f2 length = $4;
   set Two key = f3 / unique; /* unexpected behavior? or what? */
   if (f1=0) then do; 
       f2 = 'Zero';
       output;
   end;
run;
share|improve this question

2 Answers

up vote 3 down vote accepted

The KEY= option is used against a lookup dataset that has been indexed, the values of which are looked up in a second dataset. The data step therefore requires 2 set statements. In your code there is no dataset to lookup the values from 'Two', which results in an infinite loop with all variables having a missing value. If you added the 'Two' dataset in a separate SET statement, then it will just return a copy of it (without the f3 variable and with the transformation you put in). You obviously wouldn't ever want to do this, I'm just suggesting it to make the code work.

There are plenty of examples online on how to perform an index key merge, it is an efficient technique if you are looking up a small number of values in a large dataset.

share|improve this answer

Not sure what you are asking. It is syntactically correct as long as your data set TWO has an index named F3. That index might be a composite index (multiple variables) or a single index on a variable named F3. And the variable F1 might be in the data set TWO, but if not it will be missing.

share|improve this answer
similar code doesn't work :\ this strange :\ – loldop May 10 '12 at 14:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.