포스팅 목차
안녕하세요.
sas9.2 에서 제공한 대쉬보드 기능 중 몇가지 예제로 만들었으니 참고하세요.
사용방법은 첨부파일 다운로드해서 SAS 창에서 실행하거나 아래의 스크립트 복사해서 사용하세요.
gtile 은 아주 드릴다운이 되어 아주 유용한 것으로 생각 됩니다.
===============================================================
goptions reset=all device=javaimg hsize=10cm vsize=3cm;
/* goptions reset=all device=javaimg;
DEVICE= ACTIVEX, JAVA, ACTXIMG, or JAVAIMG*/
ods html ;
proc gkpi mode=raised; /* creates a three-dimensional look, default mode is basic */
hslider /* creates horizontal slider, specify slider to generate vertical KPI */
actual=-6.7 /* actual value displayed by the needle */
bounds=(-10 -5 0 5 10); /* list of defined boundary values */
run;
quit;
proc gkpi mode=raised;
hslider actual=0.28
bounds=(0 .22 .35 .50) /
colors=(PaleTurquoise MediumTurquoise Teal);
run;
quit;
proc gkpi mode=raised; /* creates a three-dimensional look, default mode is basic */
hbullet /* creates horizontal bullet, specify bullet to create vertical KPI */
actual=57 /* actual value displayed by the needle */
bounds=(0 30 60 100)/* list of defined boundary values */
/ target=75; /* displays target bar within KPI */
run;
quit;
proc gkpi mode=raised; /* creates a three-dimensional look, default mode is basic */
dial /* dial KPI with center color to indicate actual color */
actual=57 /* actual value displayed by the needle */
bounds=(0 30 60 100)/* list of defined boundary values */
/ target=75; /* displays target needle within KPI */
run;
quit;
proc gkpi mode=raised; /* creates a three-dimensional look, default mode is basic */
speedometer /* speedometer with center color to indicate actual color */
actual=.72 /* actual value displayed by the needle */
bounds=(0 .30 .60 1) /* list of defined boundary values */
/ target=.85 /* displays target needle within KPI */
type=half /* type=half valid values are full(default)/half/quarter*/
lfont=(f="AMT" height=.5cm) label="Average Capacity"
format="percent8.0"; /* format range and actual values in percent */
run;
quit;
goptions reset=all device=activex hsize=10cm vsize=10cm;title1 'test';
proc gtile
data=sashelp.class;
flow age
tileby=(sex, age, name)
/ colorvar=height;
run;
quit;
ods html close;
* 통계분석연구회 : http://cafe.daum.net/statsas
* 백승민홈페이지 : http://www.statwith.pe.kr
'SAS' 카테고리의 다른 글
[INFILE] tab이 delimitor일때와, 연속으로 tab이... (0) | 2011.02.22 |
---|---|
[EXCEL] excel 화일 불러들어오기(filename) (0) | 2011.02.22 |
[Connect] scr file 수정없이 sas connect 사용 s... (0) | 2011.02.18 |
SAS 서버 9.2에서 Oracle 서버를 라이브러리로 잡... (0) | 2011.02.18 |
[MACRO] MACRO내용 확인 및 저장(%COPY) (0) | 2011.02.18 |
댓글