-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05-bmt-descriptive.log
115 lines (85 loc) · 3.45 KB
/
05-bmt-descriptive.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
1 The SAS System 15:10 Sunday, November 28, 2021
NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software 9.4 (TS1M4)
Licensed to UNIVERSITY OF MICHIGAN - T&R - SFA, Site 70082420.
NOTE: This session is executing on the X64_10PRO platform.
NOTE: Updated analytical products:
SAS/STAT 14.2
SAS/ETS 14.2
SAS/OR 14.2
SAS/IML 14.2
SAS/QC 14.2
NOTE: Additional host information:
X64_10PRO WIN 10.0.18362 Workstation
NOTE: SAS initialization used:
real time 0.28 seconds
cpu time 0.28 seconds
1 %let cdir_path=.; /* Path to current directory */
2
3 filename bmtdata "&cdir_path\inc\create-bmt-data.sas";
4 %include bmtdata;
NOTE: The data set WORK.BMT has 43 observations and 6 variables.
NOTE: DATA statement used (Total process time):
real time 0.04 seconds
cpu time 0.01 seconds
62
63 options nocenter;
64 ods html file = "05-bmt-descriptive.html" (title ="BMT descriptive")
65 path = "&cdir_path\reports";
NOTE: Writing HTML Body file: 05-bmt-descriptive.html
66
67 Title "Contents of BMT data";
68 proc contents data=bmt;
69 run;
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.06 seconds
cpu time 0.04 seconds
NOTE: The PROCEDURE CONTENTS printed page 1.
70
71 Title "BMT data n=43";
72 proc print data=bmt;
2 The SAS System 15:10 Sunday, November 28, 2021
73 run;
NOTE: There were 43 observations read from the data set WORK.BMT.
NOTE: The PROCEDURE PRINT printed page 2.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
74
75 Title "Frequencies for selected variables";
76 proc freq data = bmt;
77 tables hodgkins allo status;
78 tables hodgkins*allo/ nopercent;
79 run;
NOTE: There were 43 observations read from the data set WORK.BMT.
NOTE: The PROCEDURE FREQ printed page 3.
NOTE: PROCEDURE FREQ used (Total process time):
real time 0.04 seconds
cpu time 0.01 seconds
80
81 title "Descriptive stats for t variable by censored status";
82 proc sort data=bmt;
83 by status;
84 run;
NOTE: There were 43 observations read from the data set WORK.BMT.
NOTE: The data set WORK.BMT has 43 observations and 6 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
85
86 proc means data = bmt;
87 var time;
88 by status;
89 run;
NOTE: There were 43 observations read from the data set WORK.BMT.
NOTE: The PROCEDURE MEANS printed page 4.
NOTE: PROCEDURE MEANS used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
90
91 ods html close;
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
3 The SAS System 15:10 Sunday, November 28, 2021
real time 1.03 seconds
cpu time 0.68 seconds