Hello: I've searched the boards and have seen a number of questions on exporting editable graphics from SAS Studio but none of the proposed solutions have worked for me. I'm trying for an EMF file, if possible, but anything editable outside the SAS environment would be fine (this point is non-negotiable - our publications group needs editable graphics so please don't tell me to just format the graphics in SAS and export an image file). The most recent error message I get (repeated several times) is: " WARNING: html5 destination does not support EMF images. Using the default static format." The code otherwise runs fine and I get boxplots as both .emf and .sge which I can download but they are not editable; just images. Maybe my problem is not knowing how to edit these files, but inserting them into Word and PowerPoint doesn't allow any ungrouping or editing of the image. The graphics output options in PROC MIXED seem more limited than in other procedures but I'm still trying the options. If exporting within SAS, then graphing/formatting with another procedure is an option, that would be good, too. Here is my code, pointing the output to the SAS Studio server folder I can access, and using code from examples the community have provided to others with this issue: ods rtf file = '/home/u58490928/sasuser.v94/growth/test.emf' image_dpi= 300 sge = on; ods graphics on / outputfmt=emf; proc mixed data=growth.undamaged_conds method=reml plots=boxplot(observed); class island ftypen cid invyr; model tpa_live=ftypen / solution; random island; repeated invyr /subject=cid type=ar(1); lsmeans ftypen / cl pdiff; run; ods rtf close; ods graphics off;
... View more