Hi All,
In an interview of SAS, I have asked this question that In my dataset if I have 1000 variables so I want to create new variable @ 5th place or 50th place what method I should choose?
Any help appreciated.
This is one way:
data want;
retain Var1 Var2 Var3 Var4 NewVar;
set have;
NewVar = "NewVal";
run;
But IMHO it's a dumb question as the position of a variable has no effect on processing or analysis. The only time I reposition variables is to regroup them for browsing in a viewer.
@SASKiwi wrote:
But IMHO it's a dumb question as the position of a variable has no effect on processing or analysis. The only time I reposition variables is to regroup them for browsing in a viewer.
I give extra points for this answer, if I'm asking the question in an interview.
For 50th place, I'd use
data WANT;
if 0 then set HAVE (keep=VAR1--VAR49);
length NEWVAR 8;
if 0 then set HAVE (keep=VAR50--VAR99);
.. normal SAS code ...
run;
but as @SASKiwi said that's not an interesting question.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.