ods excel file="c:\projects\output\example.xlsx" /* will apply an appearance style */ style=pearl options( /* for multiple procs/sheet */ sheet_interval="none" /* name the sheet tab */ sheet_name="CARS summary" ); /* add some formatted text */ ods escapechar='~'; ods text="~S={font_size=14pt font_weight=bold}~Cars Summary and Histogram"; /* tabular output */ proc means data=sashelp.cars; var msrp invoice; run; /* and a graph */ ods graphics / height=400 width=800 noborder; proc sgplot data=sashelp.cars; histogram msrp; run; ods excel close;
'통계 clinical trial > SAS' 카테고리의 다른 글
proc report에 format 처러하기 및 통계처리 (0) | 2018.11.04 |
---|---|
Proc Transpose (0) | 2018.11.04 |
SAS에서 excel 파일 불러오기 (PROC IMPORT) (0) | 2018.11.02 |
P-value 집어넣기 (0) | 2018.11.01 |
반올림 버림 (0) | 2018.11.01 |