BookmarkSubscribeRSS Feed
onpoint1
Calcite | Level 5

We don't yet have SAS/GRAPH and are considering purchasing.  Can you describe the process (short version) to add vertical error bars around a series of points?  These will be confidence intervals around the mean.  Would this be GPLOT or GCHART or other?  Anything else we should know? Thanks

2 REPLIES 2
AncaTilea
Pyrite | Level 9

Hi.

Both will do it for you.

proc gchart data = sashelp.class;

     vbar sex/ type=MEAN errorbar=BOTH clm=95 sumvar=age;

run; quit;

And here is more info:

http://www.nesug.org/proceedings/nesug07/ff/ff17.pdf

For proc gplot you will have to calculate yourself the mean +/- s.e. to get the upper/lower Confidence Limits.Then use an overlay to plot.

Here is more information:

42515 - Plot means with standard error bars from calculated data with PROC GPLOT

DanH_sas
SAS Super FREQ

You can also use PROC SGPLOT. For bar charts, line charts, and dot plots, you can have the procedure compute three types of limits: clm, stderr, and stddev. YOu can also specify a multiplier for stderr and stddev.

proc sgplot data=sashelp.class;

vbar age / response=weight stat=mean limitstat=clm;

run;

For plots, you can use overlays to plot the limit bars:

proc sgplot data=somedata;

series x=xvar y=yvar;

scatter x=xvar y=yvar / yerrorupper=ulimitvar yerrorlower=llimitvar;

run;

The SG procedure were introduced in SAS 9.2 as part of SAS/GRAPH; however, as of SAS 9.3, they are part of BASE SAS.

Hope this helps!

Dan

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2963 views
  • 0 likes
  • 3 in conversation