<?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: Help w/ logistic analysis in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641978#M78360</link>
    <description>&lt;P&gt;I figured it out, thank you!&lt;/P&gt;</description>
    <pubDate>Wed, 22 Apr 2020 14:52:17 GMT</pubDate>
    <dc:creator>greerham</dc:creator>
    <dc:date>2020-04-22T14:52:17Z</dc:date>
    <item>
      <title>Help w/ logistic analysis</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641928#M78356</link>
      <description>&lt;P&gt;&lt;SPAN class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"&gt;Hi-&lt;/SPAN&gt;&lt;SPAN class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"&gt;I could use some help. I need to preform a statistical analysis to assess the association between type of insurance (categorical) and the outcome of diabetes status at visit 3 (binary variable). The diabetes status of interest is Yes (which are all of the responses).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"&gt;&lt;SPAN&gt;I wrote my code as... proc logistic data=jhst_proj2final; class PRIVATEPUBLICINSV3; model DIABETESV3(event='Yes')=PRIVATEPUBLICINSV3; run;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"&gt;&lt;SPAN&gt;But I keep getting this error message "ERROR: All observations have the same response. No statistics are computed."&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to figure out if the analysis I selected is wrong or if the code is wrong.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 13:37:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641928#M78356</guid>
      <dc:creator>greerham</dc:creator>
      <dc:date>2020-04-22T13:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help w/ logistic analysis</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641969#M78359</link>
      <description>&lt;P&gt;Try running this code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc freq data=&lt;SPAN class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"&gt;&lt;SPAN&gt;jhst_proj2final&lt;/SPAN&gt;&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; tables &lt;SPAN class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"&gt;&lt;SPAN&gt;PRIVATEPUBLICINSV3&lt;/SPAN&gt;&lt;/SPAN&gt;*&lt;SPAN class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"&gt;&lt;SPAN&gt;DIABETESV3&lt;/SPAN&gt;&lt;/SPAN&gt; / list missing;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;That will show all of the combinations of your, I assume, insurance variable with the diabetes variable. If all of the diabetes are "yes" then that is the issue. Likely you need to go back to what created the diabetes variable and see why all the values are "yes".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another possibility would be that the insurance is missing for all of the "No" diabetes responses.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 14:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641969#M78359</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-04-22T14:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help w/ logistic analysis</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641978#M78360</link>
      <description>&lt;P&gt;I figured it out, thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 14:52:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641978#M78360</guid>
      <dc:creator>greerham</dc:creator>
      <dc:date>2020-04-22T14:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help w/ logistic analysis</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641979#M78361</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/324625"&gt;@greerham&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I figured it out, thank you!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please describe what you figured out.&lt;/P&gt;
&lt;P&gt;That way when someone finds a link to this thread in an internet search later with a similar problem they will have at least one possible solution to their problem.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 14:58:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-w-logistic-analysis/m-p/641979#M78361</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-04-22T14:58:25Z</dc:date>
    </item>
  </channel>
</rss>

