<?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: I have FIML estmates for my missing data... now what? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/599910#M29181</link>
    <description>&lt;P&gt;What is the final goal of your analysis? Are you trying to perform some regression? Estimate variance? Impute the data to construct a predictive model?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Briefly,&lt;/P&gt;
&lt;P&gt;1. if you are interested in inferential statistics such as standard errors, confidence intervals, and p-values, then &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_mi_overview.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;use PROC MI and PROC MIANALYZE to perform multiple imputations. &lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2. If your data are from a statistical survey, &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_surveyimpute_toc.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;use PROC SURVEYIMPUTE&lt;/A&gt; instead.&lt;/P&gt;
&lt;P&gt;3. If you are interested in predicted values for machine learning/data mining applications, some people use &lt;A href="https://blogs.sas.com/content/iml/2017/12/04/mean-imputation-sas.html" target="_self"&gt;mean imputation.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2019 19:10:41 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2019-10-28T19:10:41Z</dc:date>
    <item>
      <title>I have FIML estmates for my missing data... now what?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/597120#M29177</link>
      <description>&lt;P&gt;Hello! First post here, and I am super new to SAS, so please bear with me!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on addressing some missing data in this data set I have. I decided to use the Full Information Estimation Likelihood (FIML) method to estimate the mean values of my missing data. I used the following code to yield the estimates:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;proc calis data=[name of data set] method=fiml; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;mstruct var=[listed pertinent variables here]; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Now that I have all the estimates I need for the missing data, I am unsure how to proceed with integrating them with the rest of my data. Is it as simple as using a series of "if then" statements (e.g., if [variable 1] = . then [variable 1] = [estimated mean]) to plug in the missing values? Or is it something more complex than that?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Thank you for your consideration!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 21:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/597120#M29177</guid>
      <dc:creator>Hedges_G</dc:creator>
      <dc:date>2019-10-16T21:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: I have FIML estmates for my missing data... now what?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/597294#M29178</link>
      <description>&lt;P&gt;See some tips in these two articles that might help&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings12/312-2012.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings12/312-2012.pdf&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2016/04/18/patterns-of-missing-data-in-sas.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2016/04/18/patterns-of-missing-data-in-sas.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 12:16:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/597294#M29178</guid>
      <dc:creator>SAS_Cares</dc:creator>
      <dc:date>2019-10-17T12:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: I have FIML estmates for my missing data... now what?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/597543#M29179</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for sending those resources! I have reviewed them, but unfortunately they don't quite address my confusion. Previously, I had ran some analyses to calculate effect sizes from one set of variables to the other, but we later decided that we wanted to impute missing values rather than use listwise deletion. I have successfully run the proc calis code (with the FIML option), and I have output that tells me the mean and co-variance structures of the estimation, such as the estimate of the variables, their standard errors, t values, and p values. I am just confused on what to do next. Do I just re-run the previous effect size analyses, and will that take into account the estimated values I just got from my proc calis code? Or do I have to do something else to ensure the estimated values are accounted for in my effect size calculation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I apologize if my description of the problem is confusing. I am doing the best I can with the knowledge I have. Thank you again for considering!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 22:03:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/597543#M29179</guid>
      <dc:creator>Hedges_G</dc:creator>
      <dc:date>2019-10-17T22:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: I have FIML estmates for my missing data... now what?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/599874#M29180</link>
      <description>&lt;P&gt;Thanks for providing more input! We have moved your post to another board to see if more users might provide feedback. If you still need help on this, you may also try reaching out to our technical support department&amp;nbsp;&lt;A href="https://support.sas.com/en/technical-support.html#contact-technical-support" target="_blank"&gt;https://support.sas.com/en/technical-support.html#contact-technical-support&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 17:20:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/599874#M29180</guid>
      <dc:creator>SAS_Cares</dc:creator>
      <dc:date>2019-10-28T17:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: I have FIML estmates for my missing data... now what?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/599910#M29181</link>
      <description>&lt;P&gt;What is the final goal of your analysis? Are you trying to perform some regression? Estimate variance? Impute the data to construct a predictive model?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Briefly,&lt;/P&gt;
&lt;P&gt;1. if you are interested in inferential statistics such as standard errors, confidence intervals, and p-values, then &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_mi_overview.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;use PROC MI and PROC MIANALYZE to perform multiple imputations. &lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2. If your data are from a statistical survey, &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_surveyimpute_toc.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;use PROC SURVEYIMPUTE&lt;/A&gt; instead.&lt;/P&gt;
&lt;P&gt;3. If you are interested in predicted values for machine learning/data mining applications, some people use &lt;A href="https://blogs.sas.com/content/iml/2017/12/04/mean-imputation-sas.html" target="_self"&gt;mean imputation.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 19:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/I-have-FIML-estmates-for-my-missing-data-now-what/m-p/599910#M29181</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-10-28T19:10:41Z</dc:date>
    </item>
  </channel>
</rss>

