BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
psh1025
Calcite | Level 5

Using a macro of proc lifetest, I draw a Kaplan-Meier survival curve.

On the Bottom-left, + Censored with Logrank p <.0001 is presented.

Although I am not sure how large is the default letter size in a small inset table, I want to enlarge the size of letters.(=>10pt).

How can I do?

 

 

data _null_;

   %let url = //support.sas.com/documentation/onlinedoc/stat/ex_code/141;

   infile "http:&url/templft.html" device=url;

   file 'macros.tmp';

   retain pre 0;

   input;

   if index(_infile_, '</pre>') then pre = 0;

   if pre then put _infile_;

   if index(_infile_, '<pre>') then pre = 1;

run;

%inc 'macros.tmp' / nosource;

 

%ProvideSurvivalMacros

%let InsetOpts = autoalign=(BottomLeft)

               border=true BackgroundColor=GraphWalls:Color Opaque=true;

%CompileSurvivalTemplates

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
It doesn't seem to be included in the default macros so unfortunately that means customizing the template yourself. It's not too difficult but remember to save your old template first!

Instructions on how to modify the templates are found here: https://go.documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.2&docsetId=statug&docsetTarget=st...

View solution in original post

1 REPLY 1
Reeza
Super User
It doesn't seem to be included in the default macros so unfortunately that means customizing the template yourself. It's not too difficult but remember to save your old template first!

Instructions on how to modify the templates are found here: https://go.documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.2&docsetId=statug&docsetTarget=st...

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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