<?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: Proc Genmod Error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/862315#M340608</link>
    <description>&lt;P&gt;The request included showing us the LOG for this step that has the error. We need to see the ENTIRE log for this PROC, every single line of the log for the PROC that has the error, not just the ones that have the error; and pasted into the window that appears when you click on the &amp;lt;/&amp;gt; icon.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66123iA4EF494F9CA0F6EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 04 Mar 2023 21:37:02 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2023-03-04T21:37:02Z</dc:date>
    <item>
      <title>Proc Genmod Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/861662#M340353</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rupacn_6_0-1677653687797.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80974iEFD0F128E7F37CEF/image-size/large?v=v2&amp;amp;px=999" role="button" title="rupacn_6_0-1677653687797.png" alt="rupacn_6_0-1677653687797.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I am trying to run the proc genmod code I am getting this error kindly advice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 06:56:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/861662#M340353</guid>
      <dc:creator>rupacn_6</dc:creator>
      <dc:date>2023-03-01T06:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Genmod Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/861757#M340382</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Any &lt;/STRONG&gt;time you have a question about an error include the code and the complete log of the step throwing the error. Best is to copy the entire text from the log and then on the forum open a text box using the &amp;lt;/&amp;gt; icon above the message window and paste the text.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The text box is important to preserve formatting of diagnostic messages SAS often provides. It also helps to have TEXT as we can then provide examples of changes to code that just are not possible with pictures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error is pretty clear, you have provided a parameter that is not valid for the other options in your code. Where, can't say.&lt;/P&gt;
&lt;P&gt;I would say that you may need to run some examination of your input variables and compare the values of the parameters you set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 15:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/861757#M340382</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-03-01T15:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Genmod Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/862311#M340607</link>
      <description>&lt;P&gt;&lt;BR /&gt;PROC GENMOD DATA = PTBL.NATL_FINAL descending;&lt;BR /&gt;WHERE REN IN ("BLUSB", "WLUSB") and group in('Ex_PTB','N_PTB');&lt;/P&gt;&lt;P&gt;CLASS REN(REF = "WLUSB")&lt;BR /&gt;MAT_AGE20(REF = 'N')&lt;BR /&gt;MEDUC12(REF = 'N')&lt;BR /&gt;PAT_ACK (REF = 'MARRIED')&lt;BR /&gt;WIC (REF = "N")&lt;BR /&gt;FT_PNC (REF = 'Y')&lt;BR /&gt;BMI_RC (REF = 'NL')&lt;BR /&gt;/* PH_R (REF = 'N')*/&lt;BR /&gt;MSMOKING (REF = 'N')&lt;BR /&gt;/* PR_PTB(REF = 'N')*/ ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MODEL PTB (EVENT = "Y") = REN&lt;BR /&gt;MAT_AGE20&lt;BR /&gt;MEDUC12&lt;BR /&gt;PAT_ACK&lt;BR /&gt;WIC&lt;BR /&gt;FT_PNC&lt;BR /&gt;BMI_RC&lt;BR /&gt;/* PH_R */&lt;BR /&gt;MSMOKING&lt;BR /&gt;/*PR_PTB */ /DIST = binomial link=log ;&lt;/P&gt;&lt;P&gt;ESTIMATE 'BLUSB vs WLUSB' REN 1 -1/EXP;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ESTIMATE 'UMFI vs MARRIED' pat_ack 1 0 -1/EXP;&lt;BR /&gt;ESTIMATE 'UMFU vs MARRIED' pat_ack 0 1 -1/exp;&lt;/P&gt;&lt;P&gt;ESTIMATE 'Y vs N' mat_age20 1 -1/exp;&lt;/P&gt;&lt;P&gt;ESTIMATE 'Y vs N' meduc12 1 -1/exp;&lt;/P&gt;&lt;P&gt;ESTIMATE 'Y vs N' wic 1 -1/exp;&lt;/P&gt;&lt;P&gt;ESTIMATE 'Y vs N' msmoking 1 -1/exp;&lt;/P&gt;&lt;P&gt;ESTIMATE 'Y vs N' FT_PNC 1 -1/Exp;&lt;/P&gt;&lt;P&gt;/* ESTIMATE 'Y vs N' PH_r 1 -1/exp; */&lt;/P&gt;&lt;P&gt;ESTIMATE 'AB vs NL' bmi_rc 1 -1/exp;&lt;/P&gt;&lt;P&gt;/*ESTIMATE 'Y vs N' pr_ptb 1 -1/exp;*/&lt;BR /&gt;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please see above code we only get the answers when we blind any two variables then only we will get the results without that error those two errors are ph_r, and Pr_ptb(poorhealth, previous preterm birts)&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2023 20:10:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/862311#M340607</guid>
      <dc:creator>rupacn_6</dc:creator>
      <dc:date>2023-03-04T20:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Genmod Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/862315#M340608</link>
      <description>&lt;P&gt;The request included showing us the LOG for this step that has the error. We need to see the ENTIRE log for this PROC, every single line of the log for the PROC that has the error, not just the ones that have the error; and pasted into the window that appears when you click on the &amp;lt;/&amp;gt; icon.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66123iA4EF494F9CA0F6EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2023 21:37:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Genmod-Error/m-p/862315#M340608</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-03-04T21:37:02Z</dc:date>
    </item>
  </channel>
</rss>

