Hi, All:
I want to make a figure, which expresses linear regression analysis.
By submitting the following code, we can see one legend in the output, which includes "regression" & "95% confidence interval".
data test;
input x y @@;
datalines;
10 10 4 5 2 5 2 4 8 4 9 6 7 6 5 2
1 1 3 2 4 7 6 7 8 9 11 8 6 4
;
run;
proc sgplot data=test;
reg x=x y=y / clm;
keylegend / noborder location=outside position=top;
run;
By using LEGENDLABEL= option, I succeeded to change one value "regression" to "Mean predicted".
But I want to change both legend values ("regression" & "95% confidence interval").
Please give me some advice.
Thank you for your kind cooperation.
How about
proc sgplot data=test;
reg x=x y=y / clm="clm" legendlabel="legendlabel" ;
/* keylegend / noborder location=outside position=top;*/
run;
How about
proc sgplot data=test;
reg x=x y=y / clm="clm" legendlabel="legendlabel" ;
/* keylegend / noborder location=outside position=top;*/
run;
Dear Bruno:
Thank you so much.
I accomplished it!
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.