<?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 HPLOGISTIC vs. PROC MI in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573611#M28201</link>
    <description>&lt;P&gt;I have a dummy data set of 500 observations and I am trying to fill in values for test result 1 (positive or negative), using test result 2 as predictor (positive and negative). I tried two procedures:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Randomly assign 30% to be testing and 70% as training and use HPLOGISTIC;&lt;/P&gt;&lt;P&gt;2) Assign that 30% to be missing and use PROC MI to impute the missing result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The results from the two procedures are very different. HPLOGISTICS has high Sensitivity and low Specificity, while PROC MI gave the reverse (low sensitivity and high specificity).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I generate a contingency tables between test result 2 (the predictor) and the truth (the complete original test result 1), result from HPLOGISTIC makes sense and PROC MI does not. I would really like to know why.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Jul 2019 17:26:39 GMT</pubDate>
    <dc:creator>CHELS</dc:creator>
    <dc:date>2019-07-15T17:26:39Z</dc:date>
    <item>
      <title>HPLOGISTIC vs. PROC MI</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573611#M28201</link>
      <description>&lt;P&gt;I have a dummy data set of 500 observations and I am trying to fill in values for test result 1 (positive or negative), using test result 2 as predictor (positive and negative). I tried two procedures:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Randomly assign 30% to be testing and 70% as training and use HPLOGISTIC;&lt;/P&gt;&lt;P&gt;2) Assign that 30% to be missing and use PROC MI to impute the missing result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The results from the two procedures are very different. HPLOGISTICS has high Sensitivity and low Specificity, while PROC MI gave the reverse (low sensitivity and high specificity).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I generate a contingency tables between test result 2 (the predictor) and the truth (the complete original test result 1), result from HPLOGISTIC makes sense and PROC MI does not. I would really like to know why.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2019 17:26:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573611#M28201</guid>
      <dc:creator>CHELS</dc:creator>
      <dc:date>2019-07-15T17:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: HPLOGISTIC vs. PROC MI</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573633#M28202</link>
      <description>I'll move this to the Statistics Forum where you're more likely to get an answer.</description>
      <pubDate>Mon, 15 Jul 2019 18:07:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573633#M28202</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-15T18:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: HPLOGISTIC vs. PROC MI</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573647#M28205</link>
      <description>&lt;P&gt;Please post the SAS programs you are using. Also, are the missing values in the explanatory variables (X) or in the response variable (Y)?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2019 18:50:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573647#M28205</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-07-15T18:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: HPLOGISTIC vs. PROC MI</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573655#M28208</link>
      <description>&lt;P&gt;Missing values are in Y (Result_1) and here are the two programs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc hplogistic data = Dat;&lt;BR /&gt;class Result_2 /param = ref;&lt;BR /&gt;partition role = ROLE(test = 'Test' train = 'Train');&lt;BR /&gt;model Result_1 (event = 'Positive') = Result_2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc mi data = Dat seed = 123456 nimpute=100 out = Impute noprint;&lt;BR /&gt;class Result_1 Result_2;&lt;BR /&gt;fcs discrim(Result_1/details classeffects = include);&lt;BR /&gt;var Result_2 Result_1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2019 19:07:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/HPLOGISTIC-vs-PROC-MI/m-p/573655#M28208</guid>
      <dc:creator>CHELS</dc:creator>
      <dc:date>2019-07-15T19:07:45Z</dc:date>
    </item>
  </channel>
</rss>

