I previously used the "ODS Graphics Designer" to create a graph, which I then exported (I exported it as an .eps file, which for some reason was empty, and then as a .jpg file). I saved my work in the Graphics Designer as a .sgd file. However, upon submitting my research to a scientific paper they asked for the graph in higher resolution. In the meantime, the remote server that I work on (where my data is stored) updated SAS to SAS 9.4 M8, which - apparently - do not include ODS Graphics Designer. I then figured out than I can still open the graph that I made with the following code: proc sgdesign sgd="C:\pathname\pathname\filename.sgd";
run; This runs the code that made the graph, shows it in the results viewer, and from there I can right click and save it - as a low resolution .png file. In an attempt to export the graph in eps format I tried the following: ods graphics / outputfmt=eps;
ods eps file "C:\pathname\pathname\graph.eps";
proc sgdesign sgd="C:\pathname\pathname\filename.sgd";
run;
ods eps close; This produces an error in the log - the ods eps file statement is not valid, as well as a warning: "HTML4 destination does not support EPS images. Using the default static format." I have tried replacing eps with pdf and get the same warning. I found this table of "supported file types for output destinations", but I can't seem to figure out what an output destination is so while this seems to be informative, I'm not SAS/tech-savy enough to understand what it is this page is trying to tell me. Anybody with similar issues that have found a solution? I'm not picky with the file format, as long as I get an image out in decent resolution (300 dpi) Thanks!
... View more