Bone Marrow Transplant Data
The following steps display information about the data set Sashelp.BMT and create Figure B.1:
title 'Bone Marrow Transplant Data';
proc contents data=sashelp.bmt varnum;
ods select position;
run;
title 'The First Five Observations Out of 137';
proc print data=sashelp.bmt(obs=5);
run;
title 'The Risk Group Variable';
proc freq data=sashelp.bmt;
tables group;
run;
Figure B.1
Bone Marrow Transplant Data
| Group |
Char |
13 |
Disease Group |
| T |
Num |
8 |
Disease-Free Survival Time |
| Status |
Num |
8 |
Event Indictor: 1=Event 0=Censored |
| ALL |
2081 |
0 |
| ALL |
1602 |
0 |
| ALL |
1496 |
0 |
| ALL |
1462 |
0 |
| ALL |
1433 |
0 |
| 38 |
27.74 |
38 |
27.74 |
| 45 |
32.85 |
83 |
60.58 |
| 54 |
39.42 |
137 |
100.00 |
Copyright © SAS Institute Inc. All rights reserved.