周四刚刚通过SAS Base,考前一直担心题库会变。不过还好,顺利通过。只是试题中有几个问题,想请高手回答一下。
1.、After a SAS program is submitted, the following is written to the SAS log:
105 data WORK.JANUARY;
106 set WORK.ALLYEAR(keep=Product Month Quantity Cost);
107 if Month='JAN' then output WORK.JANUARY;
108 Sales=Cost * Quantity;
109 drop=Month Quantity Cost;
-----
22
ERROR 22-322: Syntax error, expecting one of the following: !,
!!, &, *, **, +, -,
, <=, <>, =, >, >=,
AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL,
NOTIN, OR, ^=, |, ||, ~=.
110 run;
程序的错误原因是什么?
2、like %manager% 是什么意思?
这些问题的解答会在SAS Advanced里面有吗?Advanced应该如何准备?是否看PREP GUIDE就可以了?
望高手不吝赐教,谢谢!!