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-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!

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.

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