Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8107727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:52:21+00:00 2026-06-06T00:52:21+00:00

Is it possible to choose the whisker value with proc sgplot. Because it seems

  • 0

Is it possible to choose the whisker value with proc sgplot.
Because it seems only 25th and 75th are avalaible for SGPLOT.

Maybe someone know if it is possible or not?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T00:52:22+00:00Added an answer on June 6, 2026 at 12:52 am

    It is not possible to add non-standard whiskers, probably because it is discouraged by statisticians.

    They discourage it because the boxplot has a specific definition in terms of the quartiles.
    While there are occasional variations, (i.e., to get a rough normality plot),
    in general people expect to see quartiles in a box plot.
    Adding arbitrary percentiles, even ones that make sense like the ones you propose,
    is likely to confuse the audience more than it helps.

    Try this visualization: A waterfall graph of sales contributions based on the percentile intervals you suggest:

    data actualBinned; set sashelp.prdsale;
       keep actual;
    run;
    proc rank data=actualBinned out=actualBinned
         groups=100
         descending;
       var actual;
       ranks rank;
    run;
    data actualBinned; set actualBinned;
       if      rank < 5  then bin="00-05";
       else if rank < 25 then bin="05-25";
       else if rank < 50 then bin="25-50";
       else if rank < 75 then bin="50-75";
       else if rank < 95 then bin="75-95";
       else                   bin="95-100";
    run;
    proc sort data=actualBinned;
       by bin;
    run;
    proc sgplot data=actualBinned;
      waterfall category=bin response=actual;
    run;
    

    I am not a huge fan of bins of different width displayed with the same width. I would rather use 20 bins of width 5.
    With that caveat, I can see how a manager might find this visualization more useful in a specific context.

    BTW, the waterfall graph is experimental in 9.3. For older version of SAS there are several recipes online.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Should I choose the smallest datatype possible, or if I am storing the value
Possible Duplicates: JavaScript: Getting random value from an array How can I choose an
I want to know if its possible to choose a GC algorithm via code
Phonegap: I would like to know if it is possible to choose a set
Possible Duplicate: Choose order to execute JUnit tests I am writing a JUnit test.
When using <input type=file multiple> it's possible for the user to choose multiple files.
Possible Duplicate: How to save in the dropdown the value choosed? I have a
Is it possible to choose a fixed port for the Visual Studio 2010 debug
Is it somehow possible to choose the super of a class (preferably in the
Possible Duplicate: How to choose the numbers shown on the axes of a plot

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.