<?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: Interpretation of sas output with Proc logistic in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497027#M72441</link>
    <description>&lt;P&gt;I am sorry but i do not know what a prior or oversampling is. Do you have any material on that i can read. Thanks for your help.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Sep 2018 15:32:33 GMT</pubDate>
    <dc:creator>Kyra</dc:creator>
    <dc:date>2018-09-19T15:32:33Z</dc:date>
    <item>
      <title>Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/496987#M72434</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am trying to find association between post op intolerance (PO_Intolerance__Y_N_1)- dependent variable and pattern of sewing during surgery (LOCATION_OS1)- exposure. Both have two categories.&lt;/P&gt;&lt;P&gt;PO_Intolerance__Y_N_1: yes vs no&lt;/P&gt;&lt;P&gt;LOCATION_OS1: entire vs partial&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS code i used is:&lt;/P&gt;&lt;P&gt;proc logistic data=red.sleeve7;&lt;BR /&gt;class PO_Intolerance__Y_N_1(ref="N") LOCATION_OS1(ref="partial");&lt;BR /&gt;model PO_Intolerance__Y_N_1= LOCATION_OS1/scale=none aggregate;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OR i received is :&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Odds&amp;nbsp;Ratio&amp;nbsp;Estimates&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Effect&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Point Estimate&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;95%&amp;nbsp;Wald&lt;BR /&gt;Confidence&amp;nbsp;Limits&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;LOCATION_OS1 entire vs partial&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.182&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.107&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.310&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please see attched for details of output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assumed that post op intolerance will be more likely in entire sewing group vs partial sewing group.&lt;/P&gt;&lt;P&gt;But the results are opposite.&lt;/P&gt;&lt;P&gt;Please let me know if it sample size played a role? numbers in each group played a role? or it is statistically sound to report the results?&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 19 Sep 2018 14:33:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/496987#M72434</guid>
      <dc:creator>Kyra</dc:creator>
      <dc:date>2018-09-19T14:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497003#M72436</link>
      <description>You should add the PARAM=REF option.</description>
      <pubDate>Wed, 19 Sep 2018 15:01:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497003#M72436</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-19T15:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497009#M72437</link>
      <description>&lt;P&gt;Check your log. Specifically look at the notes to see what was modeled as the outcome, perhaps that is coded reverse to what you expect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can specify the outcome desired by using the effect option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;model varName (effect='no') = .... ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Sep 2018 15:07:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497009#M72437</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-19T15:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497012#M72438</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with the code below;&lt;/P&gt;&lt;P&gt;proc logistic data=red.sleeve7;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; class PO_Intolerance__Y_N_1(ref="N") LOCATION_OS1(ref="partial")/param=reference;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; model PO_Intolerance__Y_N_1= LOCATION_OS1/scale=none aggregate;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output remains the same. Please see attched for details.&lt;/P&gt;&lt;P&gt;SAS Output&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Odds Ratio EstimatesEffect Point Estimate 95% WaldConfidence LimitsLOCATION_OS1 entire vs partial &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;0.182&lt;/TD&gt;&lt;TD&gt;0.107&lt;/TD&gt;&lt;TD&gt;0.310&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Sep 2018 15:09:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497012#M72438</guid>
      <dc:creator>Kyra</dc:creator>
      <dc:date>2018-09-19T15:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497022#M72439</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help. I checked my dataset and there was mistake in coding. OR is now greater than 1 which i expected and it is insignificant which i believe is due to small numbers in Post op intolerance yes group.&lt;/P&gt;&lt;P&gt;&amp;nbsp;the output now is&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS Output&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Response ProfileOrderedValue PO_Intolerance__Y_N_1 TotalFrequency12 &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;N&lt;/TD&gt;&lt;TD&gt;340&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Y&lt;/TD&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;SAS Output&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Odds Ratio EstimatesEffect Point Estimate 95% WaldConfidence Limits&amp;nbsp;LOCATION_OS1 entire vs partial &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1.405&lt;/TD&gt;&lt;TD&gt;0.451&lt;/TD&gt;&lt;TD&gt;4.383&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Sep 2018 15:19:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497022#M72439</guid>
      <dc:creator>Kyra</dc:creator>
      <dc:date>2018-09-19T15:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497025#M72440</link>
      <description>You have an imbalance in your sizes Y=13 is significantly smaller than the No group. You may want to consider adding a prior or oversampling.</description>
      <pubDate>Wed, 19 Sep 2018 15:29:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497025#M72440</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-19T15:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497027#M72441</link>
      <description>&lt;P&gt;I am sorry but i do not know what a prior or oversampling is. Do you have any material on that i can read. Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 15:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497027#M72441</guid>
      <dc:creator>Kyra</dc:creator>
      <dc:date>2018-09-19T15:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of sas output with Proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497031#M72442</link>
      <description>&lt;P&gt;&lt;A href="https://gking.harvard.edu/category/research-interests/methods/rare-events" target="_blank"&gt;https://gking.harvard.edu/category/research-interests/methods/rare-events&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://statisticalhorizons.com/logistic-regression-for-rare-events" target="_blank"&gt;https://statisticalhorizons.com/logistic-regression-for-rare-events&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Search for : "logistic regression rare events" for more material.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For SAS specific articles, search on lexjansen.com&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/186157"&gt;@Kyra&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am sorry but i do not know what a prior or oversampling is. Do you have any material on that i can read. Thanks for your help.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 15:40:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-sas-output-with-Proc-logistic/m-p/497031#M72442</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-19T15:40:09Z</dc:date>
    </item>
  </channel>
</rss>

