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

 

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!

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