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

Hi Everyone,

 

I am trying to create some basic histograms using proc sgpanel and I am having trouble with the binwidth and binstart options. On some of the graphs I create, one panel will not follow the width and starting point specified. For example, I have four panels on a graph, three of which start at the point identified (1.25) with binstart and have the appropriate width (2.5), but the last one has widths twice as big (5) and starts at a different point (0). 

 

Code:

proc sgpanel data = subjectlevel;
	panelby class;
	histogram score/ binwidth = 2.5 binstart = 1.25;
	colaxis values = (0 to 50 by 5);
run;	

graph.png

 

Is there any way to fix this problem?

 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
bemiller
Fluorite | Level 6

I fixed it by adding 0.0001 to my binwidth. so my code went from

proc sgpanel data = subjectlevel;
panelby class;
histogram score/ binwidth = 2.5 binstart = 1.25;
colaxis values = (0 to 50 by 5);
run;

to 

proc sgpanel data = subjectlevel;
 panelby class;
 histogram score/ binwidth = 2.5001 binstart = 1.25;
 colaxis values = (0 to 50 by 5);
run;

...

View solution in original post

3 REPLIES 3
ballardw
Super User

You might look at the actual values of your score variable for the fourth value of the panelby variable.

 

I suspect some combination of values and intervals between values of the score variable are causing a problem.

bemiller
Fluorite | Level 6

For all of the groups, the scores are whole numbers, and the fourth group specifically has 10% of the data from 0-2 (so where the first bin should be).

bemiller
Fluorite | Level 6

I fixed it by adding 0.0001 to my binwidth. so my code went from

proc sgpanel data = subjectlevel;
panelby class;
histogram score/ binwidth = 2.5 binstart = 1.25;
colaxis values = (0 to 50 by 5);
run;

to 

proc sgpanel data = subjectlevel;
 panelby class;
 histogram score/ binwidth = 2.5001 binstart = 1.25;
 colaxis values = (0 to 50 by 5);
run;

...

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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