BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
csetzkorn
Lapis Lazuli | Level 10

I am using this code:

 

title1 "&Title.";
proc sgplot data=WORK.TempGraphData;
	density X / type=normal lineattrs=(color=red) legendlabel='Bla';
	density Y / type=normal lineattrs=(color=blue) legendlabel='Bla';
	histogram X / transparency=0.75 fillattrs=(color=red) legendlabel='Bla';
	histogram Y / transparency=0.75 fillattrs=(color=blue) legendlabel='Bla';
	keylegend / location=outside position=bottom;
	xaxis label="Normal Curves";
run;

 

but the 2 histograms' bin sizes appear to be very different. can I force the rendering to use the same bin sizes in both diagrams?

1 ACCEPTED SOLUTION

Accepted Solutions
3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

you mean the width of the bins right? 🙂

PeterClemmensen
Tourmaline | Level 20

Use the binwidth= option as described at the bottom of the blog post here:

 

http://blogs.sas.com/content/iml/2014/08/25/bins-for-histograms.html

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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