<?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 Check Re: Proc Genmod GEE output publication ready model output into table / create forest plots in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/691240#M33331</link>
    <description>&lt;P&gt;Check out the use of ODS.&amp;nbsp; You can use it to produce pdf or rtf files of the various tables in the output.&amp;nbsp; It is a 3 phase learning curve (in my opinion), kind of steep at first, then once you have the basics down adding new techniques is pretty simple, and then finally working on using ODS OUTPUT as a first step to PROC REPORT (which I always find harder).&amp;nbsp; Check the Programming--&amp;gt;ODS and Base Reporting forum for more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Tue, 13 Oct 2020 12:53:18 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2020-10-13T12:53:18Z</dc:date>
    <item>
      <title>Proc Genmod GEE output publication ready model output into table / create forest plots</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/688720#M33215</link>
      <description>&lt;P&gt;Dear SAS Users,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an easy way to program SAS output from proc genmod into publication ready tables? The cutting and pasting of exponentiated output is very cumbersome.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running a repeated measures GEE model in proc genmod for 8 individual mental health outcomes (e.g., depression, anxiety_stress, self_harm, relationship, suicide, substance, abuse).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;**stress and anxiety;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;&lt;STRONG&gt;genmod&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;data&lt;/SPAN&gt;=ctl.mixedrev ;&lt;/P&gt;&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;class&lt;/SPAN&gt; actor_id age_fin (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;"2"&lt;/SPAN&gt;) race_clean (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;'4'&lt;/SPAN&gt;) sex_iden (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;"1"&lt;/SPAN&gt;) time_march (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;'0'&lt;/SPAN&gt;) pre (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;"1"&lt;/SPAN&gt;) lgbtq (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;'0'&lt;/SPAN&gt;) active_rescue (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;'0'&lt;/SPAN&gt;) COVID_19 (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;'0'&lt;/SPAN&gt;) isolated (&lt;SPAN class="s2"&gt;ref&lt;/SPAN&gt;=&lt;SPAN class="s3"&gt;'0'&lt;/SPAN&gt;)/ &lt;SPAN class="s2"&gt;param&lt;/SPAN&gt;=GLM;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;model&lt;/SPAN&gt; stress_anxiety (event=&lt;SPAN class="s3"&gt;'1'&lt;/SPAN&gt;) = age_fin race_clean sex_iden time_march lgbtq active_rescue COVID_19 isolated/&lt;SPAN class="s2"&gt;dist&lt;/SPAN&gt;=poisson&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;link&lt;/SPAN&gt;=log&lt;/P&gt;&lt;P class="p4"&gt;type3covbdscale&lt;SPAN class="s4"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;repeated&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;subject&lt;/SPAN&gt; = actor_id / &lt;SPAN class="s2"&gt;type&lt;/SPAN&gt;=AR(&lt;SPAN class="s5"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;) ;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;lsmeans&lt;/SPAN&gt; time_march / &lt;SPAN class="s2"&gt;diff&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;exp&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;cl&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p1"&gt;*lsmeans age2/e;&lt;/P&gt;&lt;P class="p1"&gt;*lsmeans race_rev/e;&lt;/P&gt;&lt;P class="p1"&gt;*lsmeans sex_rev1/e;&lt;/P&gt;&lt;P class="p1"&gt;*lsmeans time_march/e;&lt;/P&gt;&lt;P class="p1"&gt;*slice time_march *&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;race_rev / sliceby race_rev diff oddsratio cl;&lt;/P&gt;&lt;P class="p1"&gt;*estimate 'Gender effect' sex_rev1 10000000-1 / exp;&lt;/P&gt;&lt;P class="p5"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;SPAN class="s4"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, I really want to be able to output the output from each of the 8 models into a publication ready table, but don't know where to start.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I want to plot forest plots for a number of interaction terms within each model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I do this? I'd really like to be able to move away from putting everything in excel, then exponentiating, then cutting and pasting into a word table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help you may be able to provide!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Oct 2020 21:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/688720#M33215</guid>
      <dc:creator>jdr1</dc:creator>
      <dc:date>2020-10-03T21:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Genmod GEE output publication ready model output into table / create forest plots</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/689044#M33216</link>
      <description>&lt;P&gt;Moved to &lt;EM&gt;stats&lt;/EM&gt; community.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 00:21:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/689044#M33216</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-10-06T00:21:42Z</dc:date>
    </item>
    <item>
      <title>Check Re: Proc Genmod GEE output publication ready model output into table / create forest plots</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/691240#M33331</link>
      <description>&lt;P&gt;Check out the use of ODS.&amp;nbsp; You can use it to produce pdf or rtf files of the various tables in the output.&amp;nbsp; It is a 3 phase learning curve (in my opinion), kind of steep at first, then once you have the basics down adding new techniques is pretty simple, and then finally working on using ODS OUTPUT as a first step to PROC REPORT (which I always find harder).&amp;nbsp; Check the Programming--&amp;gt;ODS and Base Reporting forum for more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 12:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/691240#M33331</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-10-13T12:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Check Re: Proc Genmod GEE output publication ready model output into table / create forest plots</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/691245#M33333</link>
      <description>&lt;P&gt;Hi Steve,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greatly appreciate your response. I'll be sure to check out '&lt;SPAN&gt;Programming--&amp;gt;ODS and Base Reporting' and welcome any additional recommendations on&lt;/SPAN&gt;&amp;nbsp;tutorials or books in which I could start walking through to gain ground in this area.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 13:00:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Genmod-GEE-output-publication-ready-model-output-into-table/m-p/691245#M33333</guid>
      <dc:creator>jdr1</dc:creator>
      <dc:date>2020-10-13T13:00:23Z</dc:date>
    </item>
  </channel>
</rss>

