BookmarkSubscribeRSS Feed
NT
Calcite | Level 5 NT
Calcite | Level 5

Hello,

 

I am trying to add a small heading into the legend ("Health care associated"), between community and non-nosocomial in the figure attached.

 

Does anyone know how to do it using proc template? This is the codes I used to create this figure.

I would truly appreciate your help.

 

 

 

proc template;

define statgraph survival;

begingraph;

 

layout lattice / rows=2 rowweights=(0.85 0.15) rowgutter=10 columndatarange=union;

layout overlay / xaxisopts=(label="Years"  linearopts=(viewmax=5.5 viewmin=0 tickvaluelist=(0 1 2 3 4 5)))

yaxisopts=(label="Actuarial Survival (%)"  linearopts=(viewmin=0 viewmax=100 tickvaluelist=(10 20 30 40 50 60 70 80 90 100)));

stepplot x=time y=survival / group=stratum name='a';

discretelegend 'a' / location=inside halign=right valign=top down=2 across=1 border=true;

layout gridded / columns=1 border=false autoalign=(bottom);

entry halign=left "P<.001";

endlayout;

endlayout;

 

endlayout;

 

endgraph;

end;

run;


survival test.jpg
2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

Please try the title option in discretelegend

 

proc template;
define statgraph survival;
begingraph;

layout lattice / rows=2 rowweights=(0.85 0.15) rowgutter=10 columndatarange=union;

layout overlay / xaxisopts=(label="Years"  linearopts=(viewmax=5.5 viewmin=0 tickvaluelist=(0 1 2 3 4 5)))

yaxisopts=(label="Actuarial Survival (%)"  linearopts=(viewmin=0 viewmax=100 tickvaluelist=(10 20 30 40 50 60 70 80 90 100)));

stepplot x=time y=survival / group=stratum name='a';

discretelegend 'a' / title='legend' location=inside halign=right valign=top down=2 across=1 border=true;

layout gridded / columns=1 border=false autoalign=(bottom);

entry halign=left "P<.001";

endlayout;
endlayout;
endlayout;
endgraph;
end;
run;

 

Thanks,
Jag
NT
Calcite | Level 5 NT
Calcite | Level 5

Dear Jag,

 

Thank you very much.

 

Best,

 

NT

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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