BookmarkSubscribeRSS Feed
sullivan0822
Calcite | Level 5
I have a nice horizontal boxplot created using PROC BOXPLOT and ODS GRAPHICS, but the journal won't accept it. I can't get the output into anything other than an image file which is not editable. I've run into this before but was able to reformat PNG files in Adobe but not with the figures that require ODS GRAPHICS. Here is what the journal said - note what this person suggests below did not work.
"Unfortunately, Figures 1 and 3 are still not editable. It seems that a pdf was created from a tiff or jpg file, or the SAS program converted it to a tiff or jpg before converting it to a pdf. What file formats does SAS allow? Is it possible to highlight the graphs and copy and paste to powerpoint without the graphs being converted to a picture format (the paste special command may need to be used)?"
3 REPLIES 3
Cynthia_sas
SAS Super FREQ
Hi:
In ODS RTF and ODS PDF, the graphs are converted from SAS into either RTF internal format or PDF internal format. Generally, these graphs, once in a file, are not editable.

However, if you use ODS HTML, with the style that you used in RTF or PDF, your result will be a PNG file which should be editable with any kind of graphics editing program. For example, if you run the program below you will get 3 files from running PROC REG:
1) c:\temp\for_journal.html (which you probably do not need)
2) c:\temp\FitPlot.png (this might have a number, depending on whether you've created other FitPlots in the same session)
3) c:\temp\DiagnosticsPanel.png (might also have a number, for same reason as above)

cynthia

[pre]
ods listing close;
ods html path='c:\temp' (url=none)
file='for_journal.html' style=journal;

ods graphics on;
ods html select DiagnosticsPanel FitPlot;
proc reg data=sashelp.class;
model height=weight;
run;
quit;
ods graphics off;

ods html close;
[/pre]
sullivan0822
Calcite | Level 5
Thanks for responding to my post. Actually this is what I started with. After all the effort I've put in to getting my graphics out as png files, nobody seems to like them anymore. I did finally get the journal to take it but had to do it it STATA (sorry!). I've had some limited success converting png's from SAS/GRAPH procedures to EPSI using adobe - this passed the Cadmus Rapid Inspector - but this does not work on the plots that are only created using ODS GRAPHICS like the horizontal boxplot. None of the SAS created png or pdf files pass Rapid Inspector (none of mine anyway). Tried SAS directly creating EPSI files but they looked really bad.
sullivan0822
Calcite | Level 5
I spoke too soon - figured out I can convert the png file to an eps that passes.

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!

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