<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Editable EDF in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Editable-EDF/m-p/835132#M82085</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;this time i need to create EDF plot which is editable for journal editor. It should be generated as editable PDF, or PPT, XLS, DOC/DOCX. The thing is that i create EDF plot via npar1way procedure which is a part of my analysis.&lt;/P&gt;
&lt;P&gt;Could you please provide me a code which will export the generated plot (from npar1way) in editable pdf?&lt;/P&gt;
&lt;P&gt;Thank you in advance for any response.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Skillside&lt;/P&gt;</description>
    <pubDate>Mon, 26 Sep 2022 10:52:16 GMT</pubDate>
    <dc:creator>Skillside</dc:creator>
    <dc:date>2022-09-26T10:52:16Z</dc:date>
    <item>
      <title>Editable EDF</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Editable-EDF/m-p/835132#M82085</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;this time i need to create EDF plot which is editable for journal editor. It should be generated as editable PDF, or PPT, XLS, DOC/DOCX. The thing is that i create EDF plot via npar1way procedure which is a part of my analysis.&lt;/P&gt;
&lt;P&gt;Could you please provide me a code which will export the generated plot (from npar1way) in editable pdf?&lt;/P&gt;
&lt;P&gt;Thank you in advance for any response.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Skillside&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 10:52:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Editable-EDF/m-p/835132#M82085</guid>
      <dc:creator>Skillside</dc:creator>
      <dc:date>2022-09-26T10:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Editable EDF</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Editable-EDF/m-p/835148#M82086</link>
      <description>&lt;P&gt;This code produces PDF, PowerPoint, and RTF (Word) documents as output.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="s:/workshop/edf.pdf";
ods powerpoint file="s:/workshop/edf.ppt";
ods rtf file="s:/workshop/edf.rtf";
data Arthritis;
   input Treatment $ Response Freq @@;
   datalines;
Active 5 5 Active 4 11 Active 3 5 Active 2 1 Active 1 5
Placebo 5 2 Placebo 4 4 Placebo 3 7 Placebo 2 7 Placebo 1 12
;

proc npar1way edf plots=edfplot data=Arthritis;
   class Treatment;
   var Response;
   freq Freq;
run;
ods pdf close;
ods powerpoint close;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The PDF is editable in Adobe Acrobat, the PPT in PowerPoint, and the RTF file in Word. The EDF graph produced is an image, and like other embedded images, can be embellished in those applications by adding text, highlights and call-out boxes.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 12:31:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Editable-EDF/m-p/835148#M82086</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2022-09-26T12:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Editable EDF</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Editable-EDF/m-p/835401#M82090</link>
      <description>&lt;P&gt;Thank you, it seems that it works!&lt;/P&gt;
&lt;P&gt;Hope that journal editor won't request different format.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Skillside&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 10:14:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Editable-EDF/m-p/835401#M82090</guid>
      <dc:creator>Skillside</dc:creator>
      <dc:date>2022-09-27T10:14:06Z</dc:date>
    </item>
  </channel>
</rss>

