<?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: Output not created warning with Imputation with Proc MI in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Output-not-created-warning-with-Imputation-with-Proc-MI/m-p/392779#M66293</link>
    <description>&lt;P&gt;You used the noprint option. It looks like the SAS log is tellingyou not to use the noprint option.&lt;/P&gt;</description>
    <pubDate>Sat, 02 Sep 2017 17:26:49 GMT</pubDate>
    <dc:creator>evardoodle</dc:creator>
    <dc:date>2017-09-02T17:26:49Z</dc:date>
    <item>
      <title>Output not created warning with Imputation with Proc MI</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Output-not-created-warning-with-Imputation-with-Proc-MI/m-p/334098#M62860</link>
      <description>&lt;P&gt;I am working on imputing data on body composition with proc mi and mianalyze. My analysis step is with proc glm to run a manova for a Hotelling's T2. I unfortunately have participants who were lost to follow up and I need to impute their data because of a small sample size. I have run the missing pattern and my imputation is for data MAR. I am imputing variables missing from the initial visit separate from the final visit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running into an issue where the initial time I ran my coding the MI statement and the GLM statement ran, but I received warning statements for my ods output, and my MIANALYSE procedure did not run. In trying to research and remedy the issue the output has stopped running the GLM procedure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My warnings are:&lt;/P&gt;&lt;P&gt;WARNING: Output 'invxpx' was not created.&amp;nbsp; Make sure that the output object name, label, or path is spelled correctly.&amp;nbsp; Also, verify that the appropriate procedure options are used to produce the requested output object.&amp;nbsp; For example, verify that the NOPRINT option is not used.&lt;/P&gt;&lt;P&gt;WARNING: Output 'ParameterEstimates' was not created.&amp;nbsp; Make sure that the output object name, label, or path is spelled correctly.&amp;nbsp; Also, verify that the appropriate procedure options are used to produce the requested output object.&amp;nbsp; For example, verify that the NOPRINT option is not used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thoughts on moving forward to get the output I need to run the MIANALYZE procedure?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Syntax run&lt;/P&gt;&lt;P&gt;data recov1;&lt;/P&gt;&lt;P&gt;input id rnd wkinit wkfin initcat1b fincat1b initwt initbmi initperbf initfmi initlmi initlpct inittpct inittlpctr initapct initgpct initagpctr finwt finbmi finperbf finfmi finlmi finlpct fintpct fintlpctr finapct fingpct finagpctr;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc mi data=recov1 nimpute=0;&lt;/P&gt;&lt;P&gt;var rnd wkinit wkfin initcat1b fincat1b initwt initbmi initperbf initfmi initlmi initlpct inittpct inittlpctr initapct initgpct initagpctr finwt finbmi finperbf finfmi finlmi finlpct fintpct fintlpctr finapct fingpct finagpctr;&lt;/P&gt;&lt;P&gt;ods select misspattern;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title "imputation phase initial body comp variables";&lt;/P&gt;&lt;P&gt;proc mi data=recov1 nimpute=25 out=mi_recov1 seed=4859;&lt;/P&gt;&lt;P&gt;class initcat1b rnd fincat1b;&lt;/P&gt;&lt;P&gt;fcs nbiter=10 reg(/details);&lt;/P&gt;&lt;P&gt;var rnd initcat1b fincat1b initwt initbmi initperbf initfmi initlmi initlpct inittpct inittlpctr initapct initgpct initagpctr;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title "analysis phase from imputed initial body comp variables";&lt;/P&gt;&lt;P&gt;Proc glm data=mi_recov1 noprint;&lt;/P&gt;&lt;P&gt;class fincat1b;&lt;/P&gt;&lt;P&gt;Model initwt initbmi initperbf initfmi initlmi initlpct inittpct inittlpctr initapct initgpct initagpctr = fincat1b;&lt;/P&gt;&lt;P&gt;by _imputation_;&lt;/P&gt;&lt;P&gt;Manova h=fincat1b;&lt;/P&gt;&lt;P&gt;Means fincat1b / hovtest=bf;&lt;/P&gt;&lt;P&gt;ods output ParameterEstimates=recov1parms invxpx=recov1xpxi;&lt;/P&gt;&lt;P&gt;Run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title "pooling phase for imputed initial body comp variables";&lt;/P&gt;&lt;P&gt;proc mianalyze parms=recov1parms xpxi=recov1xpxi;&lt;/P&gt;&lt;P&gt;class fincat1b;&lt;/P&gt;&lt;P&gt;var intercept initwt initbmi initperbf initfmi initlmi initlpct inittpct inittlpctr initapct initgpct initagpctr;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;stop;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2017 16:50:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Output-not-created-warning-with-Imputation-with-Proc-MI/m-p/334098#M62860</guid>
      <dc:creator>HeatherA</dc:creator>
      <dc:date>2017-02-18T16:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Output not created warning with Imputation with Proc MI</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Output-not-created-warning-with-Imputation-with-Proc-MI/m-p/392779#M66293</link>
      <description>&lt;P&gt;You used the noprint option. It looks like the SAS log is tellingyou not to use the noprint option.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Sep 2017 17:26:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Output-not-created-warning-with-Imputation-with-Proc-MI/m-p/392779#M66293</guid>
      <dc:creator>evardoodle</dc:creator>
      <dc:date>2017-09-02T17:26:49Z</dc:date>
    </item>
  </channel>
</rss>

