SAS Base中有一题不明,请教各位高手:
A sas print procedure output of dataset A is listed below:
Obs Name Level
1 L 1
2 F 2
3 J 2
4 Y 3
5 W 4
6 P .
7 Q 1
the following program is submitted
data B;
set A;
if level='.' then expertise='unknown';
else if level=1 then expertise='low';
else if level=2 or 3 then expertise='middle';
else expertise='high';
run;
Q: which values does the variable expertise contain?