I am looking to buy a sas advance book. So any one can guide me that which one i should buy.
SAS 1658you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.
6 SAS 8716create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
WNS,
6 SAS 11070if you have 365 no of data set and each one having different variable from each other. how will you read by creating macros and create a single data set.
2 SAS 5896
Question { 10456 }
How would you code a merge that will keep only the
observations that have matches from both sets?
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
Question { 8841 }
What is difference between sas rename and lable?
Answer
Is This Answer Correct ? | 4 Yes | 1 No |
Question { 5914 }
What r all the reporting procedures...?
Answer
Is This Answer Correct ? | 2 Yes | 0 No |
Question { 10297 }
You have a data set of 100 observations,how can you
restrict the output so that the output has only data from
row no. 10 to row no. 20
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
how to get second highest salary from a employee table and
how get a 5th highest salary from a employee table?
Answer
Is This Answer Correct ? | 4 Yes | 2 No |
How to get any kind of data in SAS? Is it possible to take
data from notepad in SAS?
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
Question { 4723 }
How to get the repeated values by using sql in sas ?
Answer
Is This Answer Correct ? | 0 Yes | 1 No |
how to delete the duplicate columns permanently in SQL
Answer
Is This Answer Correct ? | 0 Yes | 1 No |
Question { 13144 }
In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer
Is This Answer Correct ? | 0 Yes | 8 No |