BookmarkSubscribeRSS Feed
AmitKB
Fluorite | Level 6
Hi all,
I want to create a normal probability plot or qq plot using SG procedures.

I know I can do it using proc univariate, but is it possible using SG procedures.

Thank for all your help.

Regards,

Amit
5 REPLIES 5
DanH_sas
SAS Super FREQ
Hey Amit,

ODS GRAPHICS is also supported in PROC UNIVARIATE. Is there a particular reason that you need to use the SGPLOT?

Thanks!
AmitKB
Fluorite | Level 6
Hi Dan,
I am trying to develop a report for presentation. The Histogram in SGplot looks more clean than in proc univariate.
Thats the reason I wanted to see if I replecate my q-q plot using proc sgplot.
DanH_sas
SAS Super FREQ
Right now, we do not have a qqplot statement in SGPLOT. However, if you turn on ODS GRAPHICS for UNIVARIATE, you should get a comparable histogram to the one from SGPLOT. Give it a try and see what you think.

Thanks!
Dan

ods graphics on;
proc univariate data=sashelp.class;
histogram weight;
run;
ods graphics off;

proc sgplot data=sashelp.class;
histogram weight;
run;
BarryDeCicco
Obsidian | Level 7

I just ran the two histograms.  The ODS graphics statement look a little better (better shading), but they were very similar.

Rick_SAS
SAS Super FREQ

Yes, you can do it. You need to compute the quantiles first. If you want a normal Q-Q plot, use PROC RANK:

 

/* get sample mean and stddev */
proc means data=sashelp.class mean std;
var weight;
run;

proc rank data=sashelp.class normal=blom out=QQ;
   var weight;
   ranks Quantile;
run;
 
proc sgplot data=QQ noautolegend;
   scatter x=Quantile y=weight;
   lineparm x=0 y=100 slope=22.77; /* y-int=mean slope=stddev */
   xaxis label="Normal Quantiles";
run;

 

For more discussion, see

http://blogs.sas.com/content/iml/2016/11/23/sampling-variation-small-samples.html

and for the general case of Q-Q plots for arbitrary distributions, see

http://blogs.sas.com/content/iml/2011/10/28/modeling-the-distribution-of-data-create-a-qq-plot.html

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 2732 views
  • 2 likes
  • 4 in conversation