Proc Univariate: Histograms

  • Follow


Hello,

In the proc univariate code below, how would one:


1) remove the box that contains the text: =93Curve     Normal(MU=3D=85=85..=
=94
2) remove the text: =93Distribution of Age=94


options orientation=3Dportrait;
ods graphics on / noborder ;
ods rtf nogtitle nogfootnote file=3D "H:\Junk.rtf";

ods rtf select histogram;

proc univariate data=3Dsashelp.class noprint;
title 'Distribution XXXXXX';
histogram Age / normal;
inset mean median std min max / format=3DCOMMA10. header=3D'Summary
Statistics' cfill=3Dwhite ctext=3Dblack position=3Dne;
legend1 cframe=3Dgray cborder=3Dblack;
run;

ods rtf close;
ods listing;


Any suggestions would be welcomed.  Thanks.
0
Reply Wing9897 (18) 12/3/2009 9:03:37 PM


0 Replies
437 Views

(page loaded in 0.037 seconds)

Similiar Articles:













7/20/2012 7:38:59 AM


Reply: