Unfortunately I recently lost my code for finding outliers using a schematic boxplot. My original code was made by following this article: https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_boxplot_sect005.htm So I tried to recreate it, but for some reason I am not getting the outbox summary data. I am using SAS version 9.4, and while I know that article above is for 9.2, I know I used it on this version before. Can someone please look at my code and tell me what I am doing wrong here? DATA D5CC;
INPUT TRT ICM TE;
DATALINES;
0 77 153
0 21 86
0 91 137
1 28 103
1 46 129
1 72 166
10 41 128
10 57 166
10 37 113
100 72 165
100 115 216
100 106 109
;
Title 'Schematic TE Boxplot';
PROC BOXPLOT data=D5CC;
plot TE*TRT / boxstyle = schematic
outbox = TEschematic;
run; The datalines section in the code above was shortened. But I will attach the output I am getting from the full dataset - which is only a boxplot. Any help would be greatly appreciated. Thanks.
... View more