BookmarkSubscribeRSS Feed
Tech1234
Calcite | Level 5

Hello,

I have created a nice survival plot for my analysis but cannot find a way to save/export as a SVG file for journal publication. Can you please help?


I am using SAS Studio, this is my code. 

 

PROC IMPORT OUT=OUTCOMES
DATAFILE= "/home/u62465117/BTC KRAS ALLELE SUBTYPE/Outcomes By Mutations.2.xls"
DBMS=XLS REPLACE;
GETNAMES=YES;
SHEET=SHEET1;
DATAROW=3;
RUN;
 
PROC FORMAT ; VALUE GROUP 1 = "G12D" 2 = "G12V" 3 = "Q61H" ; RUN ; 
DATA MUTATION ; INPUT GROUP MONTHS STATUS $ @@ ;
FORMAT GROUP ; DATALINES ; 
RUN ;
 
ODS GRAPHICS ON / outputfmt=eps;
TITLE1 "OUTCOMES OF KRAS ALLELE SUBTYPES" ;
PROC LIFETEST DATA = OUTCOMES 
PLOTS=(SURVIVAL (ATRISK=0 TO 1000 BY 20 TEST)
LOGLOGS
LOGSURV) ;
TIME MONTHS * STATUS ( 0 ) ;
STRATA GROUP ; RUN ;
3 REPLIES 3
ballardw
Super User

Your code is writing EPS (encapsulated post script graphics if I recall correctly) . You need to specify an ODS Destination that will support SVG and then use the OUTPUTFMT=SVG (not EPS)

 

ODS LISTING and ODS HTML5 should work.

Tech1234
Calcite | Level 5

Thank you for your help.


I am an extreme beginner. Is there anyway you could elaborate (or show the additional / new code needed).

I am very sorry and very appreciative.

Ksharp
Super User

Here is an example.

ods listing gpath='c:\temp\';
ods graphics /outputfmt=svg imagename='want';
proc sgplot data=sashelp.class;
scatter x=weight y=height/group=sex;
run;

Ksharp_0-1708857911148.png

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1213 views
  • 0 likes
  • 3 in conversation