Quantcast
Channel: Statistics Help @ Talk Stats Forum - SAS
Viewing all articles
Browse latest Browse all 310

PROC BOXPLOT with ODS GRAPHICS

$
0
0
Hello all,

when running proc boxplot with ods graphics on, there appears to be a default title "DISTRIBUTION of VAR1 by VAR2". Anybody know how to suppress this title?

For example:

Code:

data test;
input grp x @@;
cards;
1 7 1 8 1 9 1 8 1 9 1 9
2 5 2 4 2 6 2 7
3 2 3 1 3 1 3 2 3 4 3 2
;
run;

title ;
ods graphics on;
proc boxplot data=test;
plot x*grp;
run; quit;
ods graphics off;
footnote ;

If you look at this made-up data, there will be a title "Distribution of X by GRP".....how can I suppress this?

Viewing all articles
Browse latest Browse all 310

Trending Articles