proc report
data = ie_t
nowindows /* window 또는 wd - 보고서를 보고서창에 표시 */ ;
spacing = 1
headline /*열 제목과 제목들 사이에 간격에 밑줄로 분리 8/ ;
headskip /* 열 제목 아래에 또는 healine 옵션을 사용했다면 밑줄 뒤에 빈줄로 표시 */:
split = "|" /* 분리기호 */ ;
style(report) = {just=c outputwidth=10 in font_face='맑은 고딕' vjust=middle} /*가끔 내용이 깨질때 조절 */
style(header) = {font_face='맑은 고딕' vjust=middle }
style(column) = {font_face='맑은 고딕' vjust=middle}
style(summary)= {font_face='맑은 고딕' vjust=middle}
style = {frame=hsides rules=rows};
columns subject rand_id seq ieyn ("Inclusion Criteria" iea_1 - iea_4) ("Exclusion Criteria" iea_5 - iea_30);
define subject /id display center width =3 "Subject ID";
define rand_id /id display center width = 5 "Randomization|ID";
define seq / display center width = 5 "Sequence";
변수정의

참고: https://www.lexjansen.com/phuse/2015/is/IS08.pdf
참고: http://www.misug.org/uploads/8/1/9/1/8191072/bcochran_proc_report.pdf
With the WIDTH option individual column widths can be specified for each variable


SPANNING HEADERS

HEADLINE AND HEADSKIP
The option HEADLINE draws a line under all column headings and the spaces between them, whereas the HEADSKIP option creates an empty row beneath all column headings (in conjunction with HEADLINE it creates the empty row beneath the separator line of the column headings). The example below shows the usage of these two options.

The PROC REPORT option can be decreased, if more space is needed to show content or it can be increased to improve the readability of the output, as shown below:



'통계 clinical trial > SAS' 카테고리의 다른 글
[SAS] Proc ANOVA/ Proc ttest -ODS output p-value (0) | 2020.07.29 |
---|---|
[SAS] time, date 더하기, 빼기 (0) | 2020.07.28 |
RM ANOVA (proc glm, proc mixed) (0) | 2020.07.21 |
SAS Procedure 들 (0) | 2019.03.03 |
Call R Graphics from PROC IML (R graph 부르기) (0) | 2019.02.14 |