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

Hi,

When I tried to produce a graph without discrete option in Proc Gchart,

I Observed a Graph obtaining midpoints on X-axis (I want know How midpoints will be calculated for the given values for Numeric variable.).

1 ACCEPTED SOLUTION

Accepted Solutions
GraphGuy
Meteorite | Level 14

I've never seen Gchart's automatic midpointing algorithm in the doc.  Here is a page that describes a little about it (but not the full algorithm)...

SAS/GRAPH(R) 9.3: Reference, Third Edition

If you want to know see the exact start & end value in the axis midpoint text (instead of seeing just the single midpoint value), you can use the 'range' option, such as ...

gchart data=sashelp.class;

height / range type=mean sumvar=weight;

run;

I usually pre-process my data, and calculate my own ranges for the bars (using if/else statements, or proc rank, etc), so that I know exactly what's in which bar.

View solution in original post

2 REPLIES 2
GraphGuy
Meteorite | Level 14

I've never seen Gchart's automatic midpointing algorithm in the doc.  Here is a page that describes a little about it (but not the full algorithm)...

SAS/GRAPH(R) 9.3: Reference, Third Edition

If you want to know see the exact start & end value in the axis midpoint text (instead of seeing just the single midpoint value), you can use the 'range' option, such as ...

gchart data=sashelp.class;

height / range type=mean sumvar=weight;

run;

I usually pre-process my data, and calculate my own ranges for the bars (using if/else statements, or proc rank, etc), so that I know exactly what's in which bar.

DR_Majeti
Quartz | Level 8

Hi,

I Got cleared my doubt 95%.

Thank you for the Information, I have another Doubt regarding this -- How SAS will take number of midpoints should be given for the chart.

If we use levels or midpoints we will get how many we want, but can I know about number of default midpoints produced.

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
  • 2 replies
  • 1061 views
  • 0 likes
  • 2 in conversation