Date: Tue, 16 Aug 2011 15:04:12 -0400
Reply-To: Rick Wicklin <Rick.Wicklin@SAS.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Rick Wicklin <Rick.Wicklin@SAS.COM>
Subject: Re: Need Fancy Graphics Demo Code to Impress the Boss
When going from SAS 9.1 to SAS 9.3, the most dramatic changes were
associated with the development of ODS Statistical Graphics (SG)
procedures. See the SAS Graphics Gallery
(http://support.sas.com/sassamples/graphgallery/) and especially the link
to the SGPLOT and SGPANEL procedures.
You might also show how ODS graphics are now created automatically by many
SAS statistical procedures, such as PROC UNIVARIATE, PROC FREQ, or PROC
CORR statement. For example, use any of the following:
proc corr data=sashelp.cars
plots(maxpoints=none)=matrix(hist);
run;
proc freq data=sashelp.cars;
tables origin*type / plots=freqplot(type=dotplot);
run;
proc univariate data=sashelp.cars;
var mpg_city;
histogram mpg_city / normal kernel;
run;
Rick
SAS/IML blog http://blogs.sas.com/content/iml