BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Abud
Calcite | Level 5

Hi all, I've been trying to make a graph using PROC UNIVARIATE, however I couldn't understand why is not possible  show de first, second and the third standart desviation as the image below:

Image.bmp

How can I show the S.D like the image above, using proc UNIVARIATE ?

tk's in advanced.

1 ACCEPTED SOLUTION

Accepted Solutions
BuckyRansdell
SAS Employee

Starting with SAS 9.3m2, PROC UNIVARIATE enables you to place reference lines at the values of selected statistics, including multiples of the sample standard deviation.  Here is some code and output.  I have specified a list of bin midpoints so all the reference lines are displayed.  (Axis ranges are not extended automatically to include reference lines.)

data foo;
   do i = 1 to 100;
      x = 10 + rannor(123);
      output;
   end;
run;

proc univariate data=foo noprint;
   histogram x /
      normal(noprint)
      statref= -3std -2std -1std mean 1std 2std 3std
      statreflabel= "-3 S.D" "-2 S.D" "-1 S.D" "" "1 S.D" "2 S.D" "3 S.D"
      midpoints= 7 to 13 by 1
      nocurvelegend;
run;

Histogram5.png

View solution in original post

4 REPLIES 4
Jay54
Meteorite | Level 14

This is a custom graph, that you can make with SAS 9.3.  Use PROC MEANS to get all the statistics you need and merge with original data used for histogram. 

You can use SGPLOT procedure to create the histogram, and use REFLINE statement to overlay the lines for the SD values.  then, you can annotate the rest of the formation.

Abud
Calcite | Level 5

Hi Sanjay, could you send me a example ?

Doesn't SAS have a function to know the "z-scores" ?

BuckyRansdell
SAS Employee

Starting with SAS 9.3m2, PROC UNIVARIATE enables you to place reference lines at the values of selected statistics, including multiples of the sample standard deviation.  Here is some code and output.  I have specified a list of bin midpoints so all the reference lines are displayed.  (Axis ranges are not extended automatically to include reference lines.)

data foo;
   do i = 1 to 100;
      x = 10 + rannor(123);
      output;
   end;
run;

proc univariate data=foo noprint;
   histogram x /
      normal(noprint)
      statref= -3std -2std -1std mean 1std 2std 3std
      statreflabel= "-3 S.D" "-2 S.D" "-1 S.D" "" "1 S.D" "2 S.D" "3 S.D"
      midpoints= 7 to 13 by 1
      nocurvelegend;
run;

Histogram5.png

Abud
Calcite | Level 5

Hi, Bucky, first of all thank's for the tip, it was exactly what I'm trying to do, however, my SAS is 9.2.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 4 replies
  • 2322 views
  • 0 likes
  • 3 in conversation