Macro 단원 시작!!
교재로 주 공부
symbolgen: specifies the log messages about macro variable references are displayed
nosymbolgen:speficies the log messages about macro variable references are not displayed
%let graphics=g;
%let year=02;
%let month=jan;
%let var=sale;
proc &graphics.chart data=sasuser.y&year&month;
hbar week / sumvar=&var;
run;
proc &graphics.plot data=sasuser.y&year&month;
plot &var*day;
&graphics.매크로변수 후에 .을 찍는 이유 확인;
%nrstr는 특수문자 그대로 인식
%substr, %qsubstr는 특수문자 그대로 인식
%index()는 위치 값 반환
%scan,%qscan
&lib.. : sasuser.y02~