BookmarkSubscribeRSS Feed
jrheintz91
Calcite | Level 5

I am trying to create two histograms overlayed on one plot with their respective kernels. I want the variables in the legend, but I do NOT want the curve labels in the legend. I have tried using the KEYLEGEND feature, but when the commented out line is included, the entire legend is removed. Any help would be much appreciated.

 

PROC SGPLOT DATA=ALLFAKE;
HISTOGRAM GRADE1 / SCALE=COUNT BINSTART=0 BINWIDTH=0.5 TRANSPARENCY=0.5 LEGENDLABEL="Test 1";
HISTOGRAM GRADE2 / SCALE=COUNT BINSTART=0 BINWIDTH=0.5 TRANSPARENCY=0.5 LEGENDLABEL="Test 2";
DENSITY GRADE1 / TYPE=KERNEL ;
DENSITY GRADE2 / TYPE=KERNEL;
XAXIS label="Grade on 4.0 Scale" VALUES=(0 to 4 by 0.5);
YAXIS LABEL="Count" VALUES=(0 to 15 by 5);
Title "Test 1 and Test 2 on 4.0 Scale";
*KEYLEGEND "Grade1" "Grade2";
RUN;


graph.png
1 REPLY 1
PeterClemmensen
Tourmaline | Level 20

Add the NAME=option to the histogram options and specify that in the KEYLEGEND statement as below

 

proc sgplot data = sashelp.class;
	histogram height / group = sex transparency = 0.5 Name = "Histogram";
	density height / type = kernel group = sex;
	keylegend "Histogram" / position = NE location = inside across = 1;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 1 reply
  • 1413 views
  • 0 likes
  • 2 in conversation