BookmarkSubscribeRSS Feed
Stephane
Quartz | Level 8

With my SAS 9.3M0 I would like to produce a SVG document with two graphs. Unfortunately, most of the elements of the second graphic is missing (the axis for example). Is it my code or is it a problem of SVGVIEW ?

ods html close;ods listing;
FILENAME fname "d:\data\analyse 2003.svg"; goptions reset=all device=svgview         

gsfmode=replace gsfname=mysvg;

proc sgplot data=sashelp.stocks;where year(date) =2003;

series y=Volume x=date / markers group=stockcurvelabel curvelabelloc=outside;xaxis fitpolicy=rotate tickvalueformat=monname.  grid label='Month';

yaxis label='Volume' ;title '2003 Volume';run;


proc sgplot data=sashelp.stocks (where=(year(date)=2000 and stock = "IBM"));

series x=date y=volume;run;

ods _all_ close;

Thanks for your help.

Stéphane.

4 REPLIES 4
Jay54
Meteorite | Level 14

SGPLOT (and other SG procedures) do not use information from GOPTIONS.  You need to use the ODS GRAPHICS statement with IMAGEFMT=SVG, and you will get the correct SVG output.  See code below.

ods html close;
ods listing;

ods graphics / reset imagefmt=svg imagename='test';
proc sgplot data=sashelp.stocks;where year(date) =2003;
  series y=Volume x=date / markers group=stock curvelabel curvelabelloc=outside;
  xaxis fitpolicy=rotate tickvalueformat=monname.  grid label='Month';
  yaxis label='Volume' ;title '2003 Volume';
run;

proc sgplot data=sashelp.stocks (where=(year(date)=2000 and stock = "IBM"));
  series x=date y=volume;
run;

Stephane
Quartz | Level 8

OK ...

and in this case, I don't use the GOPTIONS. But it is the same thing ?

ods listing close;

ods printer printer=svgview file="d:\data\analyse 2003.svg";

proc sgplot data=sashelp.stocks;

where year(date) =2003;

series y=Volume x=date / markers group=stock

curvelabel curvelabelloc=outside;

xaxis fitpolicy=rotate tickvalueformat=monname.  grid label='Month';

yaxis label='Volume' ;

title '2003 Volume';

run;

proc sgplot data=sashelp.stocks (where=(year(date)=2000 and stock = "IBM"));

series x=date y=volume;

run;

ods _all_ close;

DanH_sas
SAS Super FREQ

Currently, the ODS Graphics system does not support printerpath options. The method described by Sanjay should give you an SVG output either in LISTING or HTML.

Dan

Stephane
Quartz | Level 8

Hi Dan,

This is the SAS example

http://support.sas.com/documentation/cdl/en/lrcon/62753/HTML/default/viewer.htm#n0ezld96mjxs08n1lvoj...

Looks for  "Here is the SAS code that created the stocks.svg file" and you have a

printerpath=(svgview stocks) with several SGPLOT proc.

So ?

SAS INNOVATE 2024

Innovate_SAS_Blue.png

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. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1264 views
  • 0 likes
  • 3 in conversation