<?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 Re: creating a PowerPoint presentation: fit results of correlation into one or two slides in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/844698#M333942</link>
    <description>&lt;P&gt;I suggest you use the alternative template if you want to create and compile the presentation in 2 files, or you may need to look for a good alternative.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Nov 2022 20:22:53 GMT</pubDate>
    <dc:creator>deanalepa</dc:creator>
    <dc:date>2022-11-16T20:22:53Z</dc:date>
    <item>
      <title>creating a PowerPoint presentation: fit results of correlation into one or two slides</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/617845#M181125</link>
      <description>&lt;P&gt;I’m trying to create a simple PowePoint file from SAS. The result is rather messy.&lt;/P&gt;&lt;P&gt;Specifically, one aspect: The correlation results are spread to three - four&amp;nbsp; slides, depends what else I include. Here is the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods powerpoint file="/my-pathway/output/obesity_exercise.pptx";&lt;/P&gt;&lt;P&gt;title "Correlation between exercise habits and the prevalence of obesity";&lt;/P&gt;&lt;P&gt;/* correlation: */&lt;/P&gt;&lt;P&gt;proc corr data=gal.all_exercise;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var aerobic_high muscles no_exercise obesity;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods powerpoint close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See the result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-01-16 (1).png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35386iADEA27C687F26C9A/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-01-16 (1).png" alt="2020-01-16 (1).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want it on one slide, or, second best, two: one with the statistics and one with the table. Any hint? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 17:56:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/617845#M181125</guid>
      <dc:creator>GAL</dc:creator>
      <dc:date>2020-01-16T17:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: creating a PowerPoint presentation: fit results of correlation into one or two slides</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/617847#M181127</link>
      <description>&lt;P&gt;1. Use ODS SELECT/EXCLUDE to ensure you only keep what you want to see&lt;/P&gt;
&lt;P&gt;2. Change the style to a simpler style that will fit on the page&lt;/P&gt;
&lt;P&gt;3. If you have too much data, you have too much data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Instead of a table, show a correlation heatmap which is graphical and easier to interpret and you can get away with smaller numbers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/162765"&gt;@GAL&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I’m trying to create a simple PowePoint file from SAS. The result is rather messy.&lt;/P&gt;
&lt;P&gt;Specifically, one aspect: The correlation results are spread to three - four&amp;nbsp; slides, depends what else I include. Here is the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods powerpoint file="/my-pathway/output/obesity_exercise.pptx";&lt;/P&gt;
&lt;P&gt;title "Correlation between exercise habits and the prevalence of obesity";&lt;/P&gt;
&lt;P&gt;/* correlation: */&lt;/P&gt;
&lt;P&gt;proc corr data=gal.all_exercise;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var aerobic_high muscles no_exercise obesity;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;ods powerpoint close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the result:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-01-16 (1).png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35386iADEA27C687F26C9A/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-01-16 (1).png" alt="2020-01-16 (1).png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want it on one slide, or, second best, two: one with the statistics and one with the table.&lt;STRONG&gt; Any hint?&lt;/STRONG&gt; &amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 17:59:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/617847#M181127</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-16T17:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: creating a PowerPoint presentation: fit results of correlation into one or two slides</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/844698#M333942</link>
      <description>&lt;P&gt;I suggest you use the alternative template if you want to create and compile the presentation in 2 files, or you may need to look for a good alternative.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2022 20:22:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/844698#M333942</guid>
      <dc:creator>deanalepa</dc:creator>
      <dc:date>2022-11-16T20:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: creating a PowerPoint presentation: fit results of correlation into one or two slides</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/844788#M333977</link>
      <description>It would help if you tried recording these slides and compiling them in the video editor application. Keep in mind that you cannot use the default PowerPoint templates. Try looking for templates on the internet, for example, and you can try looking at &lt;A href="https://okslides.com" target="_blank"&gt;https://okslides.com&lt;/A&gt; . You can find various slide templates on the site, and I usually look at this site if I need any good templates for my PowerPoint presentations.</description>
      <pubDate>Thu, 17 Nov 2022 10:55:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/844788#M333977</guid>
      <dc:creator>deanalepa</dc:creator>
      <dc:date>2022-11-17T10:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: creating a PowerPoint presentation: fit results of correlation into one or two slides</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/844819#M333989</link>
      <description>&lt;P&gt;Your ability to squeeze information into a Powerpoint document using ODS POWERPOINT is limited, there are a number of sizing factors that really cannot be controlled via SAS, such as the amount of space PowerPoint allocates for text. If you need a large amount of text, like a 4x4 correlation matrix in PowerPoint, I would create it using the HTML output or PDF output or Excel output, and then copy and paste it into the PowerPoint. Certainly not ideal, but given the limitations of ODS POWERPOINT, I think it is the best solution I have found.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 13:37:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-a-PowerPoint-presentation-fit-results-of-correlation/m-p/844819#M333989</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-17T13:37:19Z</dc:date>
    </item>
  </channel>
</rss>

