<?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: Struggling with Missingness in a data set in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675469#M23626</link>
    <description>&lt;P&gt;Do you want impute missing value by EM algorithm ?&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp; wrote a blog about it recently .&lt;/P&gt;</description>
    <pubDate>Sun, 09 Aug 2020 11:25:28 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2020-08-09T11:25:28Z</dc:date>
    <item>
      <title>Struggling with Missingness in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675450#M23621</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running a logistic regression with four predictor variables, 1 outcome variable, and 6 covariates.&amp;nbsp; My N is around 2000 participants.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For one of my four predictor variables, there are around 1000 people missing the question.&amp;nbsp; The question asked was very sensitive and it is normal for people to skip it on surveys per other papers. The situation is similar for one of my covariates, where a question on a sensitive topic is also skipped by a substantial number of people.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now when I run it, my data set ends up cut in half.&amp;nbsp; My major professor will not let me do multiple imputations and wants me to do Full Information Maximum Likelihood to account for the missing data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any advice on if I can do this in SAS?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 09 Aug 2020 02:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675450#M23621</guid>
      <dc:creator>klongway</dc:creator>
      <dc:date>2020-08-09T02:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Struggling with Missingness in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675463#M23624</link>
      <description>From what you describe, the people are not "missing" the question, they are deliberately choosing not to answer it. This is information that might be useful for your model.&lt;BR /&gt;&lt;BR /&gt;You can try recoding this variable to "not answered" (or whatever) then run the logistic regression.</description>
      <pubDate>Sun, 09 Aug 2020 08:25:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675463#M23624</guid>
      <dc:creator>Norman21</dc:creator>
      <dc:date>2020-08-09T08:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Struggling with Missingness in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675467#M23625</link>
      <description>&lt;P&gt;Some people will fill in the mean of the data in place of the missings and also create a new variable which is 0 if the original variable was not missing and 1 if the original variable was missing. Then you put the original variable and the new variable into the model. This essentially predicts the observations with the original variable missing at a constant offset from the observations when the original variable was not missing.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Aug 2020 11:05:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675467#M23625</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-09T11:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Struggling with Missingness in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675469#M23626</link>
      <description>&lt;P&gt;Do you want impute missing value by EM algorithm ?&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp; wrote a blog about it recently .&lt;/P&gt;</description>
      <pubDate>Sun, 09 Aug 2020 11:25:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675469#M23626</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-08-09T11:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Struggling with Missingness in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675472#M23627</link>
      <description>&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_calis_examples36.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;The SAS documentation has an example&lt;/A&gt; of how to compute FIML by using structural equation modeling with PROC CALIS.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Aug 2020 11:37:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Struggling-with-Missingness-in-a-data-set/m-p/675472#M23627</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-08-09T11:37:46Z</dc:date>
    </item>
  </channel>
</rss>

