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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 968 views
  • 0 likes
  • 2 in conversation