<?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: PROC MIXED     Convergence criteria not met. in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MIXED-Convergence-criteria-not-met/m-p/4492#M1828</link>
    <description>Redha,&lt;BR /&gt;
&lt;BR /&gt;
  ODS is complaining because WORK.COWS and WORK.FIXED are already assigned as ODS OUTPUT data sets.  Why that is the case cannot be determined from the code fragment.  Presumably they were assigned in previously executed code.&lt;BR /&gt;
&lt;BR /&gt;
  I recommend that you contact Technical Support with this problem.  You can submit it online at &lt;A href="http://support.sas.com/ctx/supportform/index.jsp" target="_blank"&gt;http://support.sas.com/ctx/supportform/index.jsp&lt;/A&gt; .&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
    <pubDate>Tue, 04 Sep 2007 15:21:16 GMT</pubDate>
    <dc:creator>David_SAS</dc:creator>
    <dc:date>2007-09-04T15:21:16Z</dc:date>
    <item>
      <title>PROC MIXED     Convergence criteria not met.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MIXED-Convergence-criteria-not-met/m-p/4491#M1827</link>
      <description>&lt;U&gt;&lt;B&gt;LOG FILE&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;
&lt;BR /&gt;
9    proc mixed data=tmp1.milkprod convh=1E-4 maxiter=5  noclprint ;&lt;BR /&gt;
10        ods output SolutionR =cows ;&lt;BR /&gt;
&lt;I&gt;WARNING: Duplicate data set name on ODS OUTPUT statement. Entry will be ignored.&lt;/I&gt;&lt;BR /&gt;
11        ods output SolutionF =fixed;&lt;BR /&gt;
&lt;I&gt;WARNING: Duplicate data set name on ODS OUTPUT statement. Entry will be ignored.&lt;/I&gt;&lt;BR /&gt;
12        class parity cmonth age_cl dccclass obs date dimclass herdbook;&lt;BR /&gt;
13        model milk= cmonth age_cl(parity) dccclass dimclass(parity) date/singular=1e-8 s&lt;BR /&gt;
13 ! outp=predict ddfm=res;&lt;BR /&gt;
14        random int / sub=herdbook type=simple s;&lt;BR /&gt;
15        repeated obs/ type=simple sub=herdbook;&lt;BR /&gt;
16   run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;NOTE: An infinite likelihood is assumed in iteration 0 because of a nonpositive definite estimated R&lt;BR /&gt;
      matrix for HERDBOOK 300000006.&lt;/I&gt;&lt;BR /&gt;
&lt;I&gt;WARNING: Output 'SolutionF' was not created.  Make sure that the output object name, label, or path&lt;BR /&gt;
         is spelled correctly.  Also, verify that the appropriate procedure options are used to&lt;BR /&gt;
         produce the requested output object.  For example, verify that the NOPRINT option is not&lt;BR /&gt;
         used.&lt;BR /&gt;
WARNING: Output 'SolutionR' was not created.  Make sure that the output object name, label, or path&lt;BR /&gt;
         is spelled correctly.  Also, verify that the appropriate procedure options are used to&lt;BR /&gt;
         produce the requested output object.  For example, verify that the NOPRINT option is not&lt;BR /&gt;
         used.&lt;BR /&gt;
NOTE: The data set WORK.PREDICT has 0 observations and 0 variables.&lt;BR /&gt;
NOTE: PROCEDURE MIXED used (Total process time):&lt;BR /&gt;
      real time           29:07.28&lt;BR /&gt;
      cpu time            9:52.12&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;U&gt;&lt;B&gt;OUTPUT&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;
&lt;BR /&gt;
                                         The Mixed Procedure&lt;BR /&gt;
&lt;BR /&gt;
                                          Model Information&lt;BR /&gt;
&lt;BR /&gt;
                        Data Set                     TMP1.MILKPROD&lt;BR /&gt;
                        Dependent Variable           milk&lt;BR /&gt;
                        Covariance Structure         Variance Components&lt;BR /&gt;
                        Subject Effects              HERDBOOK, HERDBOOK&lt;BR /&gt;
                        Estimation Method            REML&lt;BR /&gt;
                        Residual Variance Method     Parameter&lt;BR /&gt;
                        Fixed Effects SE Method      Model-Based&lt;BR /&gt;
                        Degrees of Freedom Method    Residual&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
                                             Dimensions&lt;BR /&gt;
&lt;BR /&gt;
                                 Covariance Parameters             2&lt;BR /&gt;
                                 Columns in X                    216&lt;BR /&gt;
                                 Columns in Z Per Subject          1&lt;BR /&gt;
                                 Subjects                      23501&lt;BR /&gt;
                                 Max Obs Per Subject              43&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
                                       Number of Observations&lt;BR /&gt;
&lt;BR /&gt;
                             Number of Observations Read          527310&lt;BR /&gt;
                             Number of Observations Used          527310&lt;BR /&gt;
                             Number of Observations Not Used           0&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
While excuting the same code on tmp2.milkprod works fine, the data are different in the two data sets.</description>
      <pubDate>Mon, 03 Sep 2007 23:44:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MIXED-Convergence-criteria-not-met/m-p/4491#M1827</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-09-03T23:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MIXED     Convergence criteria not met.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MIXED-Convergence-criteria-not-met/m-p/4492#M1828</link>
      <description>Redha,&lt;BR /&gt;
&lt;BR /&gt;
  ODS is complaining because WORK.COWS and WORK.FIXED are already assigned as ODS OUTPUT data sets.  Why that is the case cannot be determined from the code fragment.  Presumably they were assigned in previously executed code.&lt;BR /&gt;
&lt;BR /&gt;
  I recommend that you contact Technical Support with this problem.  You can submit it online at &lt;A href="http://support.sas.com/ctx/supportform/index.jsp" target="_blank"&gt;http://support.sas.com/ctx/supportform/index.jsp&lt;/A&gt; .&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
      <pubDate>Tue, 04 Sep 2007 15:21:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MIXED-Convergence-criteria-not-met/m-p/4492#M1828</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2007-09-04T15:21:16Z</dc:date>
    </item>
  </channel>
</rss>

