<?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 IRT Won't Converge in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-Won-t-Converge/m-p/857945#M42408</link>
    <description>&lt;P&gt;Without any knowledge of your data it is hard to make a pointed suggestion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A default concept when a limit is exceeded is to see if you can change the limit. Since the warning is the M step you might consider increasing the MAXMITER which from the documentation:&lt;/P&gt;
&lt;DIV class="xis-refProc"&gt;
&lt;DIV id="statug.irt.irtproc" class="AAsection"&gt;
&lt;DIV id="statug.irt.irtoptslist" class="AAsection"&gt;
&lt;DIV class="AAoptions"&gt;
&lt;DL class="AAoptions"&gt;
&lt;DD&gt;
&lt;P&gt;specifies the maximum number of iterations in the maximization step of the EM algorithm. By default, MAXMITER=1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I might try setting it to larger values though I wouldn't start with anything very large.&lt;/P&gt;
&lt;P&gt;Other considerations would be things like the convergence criteria. I do see that the documentation states that the FCONV parameter is not used by the EM algorithm. Perhaps you want to use a different convergence criterion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may also want to consider that making a model converge does not mean that the result is actually good model.&lt;/P&gt;
&lt;/DD&gt;
&lt;/DL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Thu, 09 Feb 2023 06:51:39 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2023-02-09T06:51:39Z</dc:date>
    <item>
      <title>PROC IRT Won't Converge</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-Won-t-Converge/m-p/857917#M42407</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use PROC IRT procedure. I am getting the following warning messages. After the following warning messages, I provide my code below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARNING: The M step for the EM algorithm fails to converge.&lt;BR /&gt;Number of iterations or number of function calls&lt;BR /&gt;exceeds limit.&lt;BR /&gt;WARNING: The estimation algorithm did not converge.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc irt data=mald.calibration_file_d link=logit itemstat outmodel=mald.initial_parameters_file_d guessprior=(0.2,20)&lt;BR /&gt;slopeprior=(1,2) fconv=.01 technique=EM maxiter=1000 maxmiter=1 noad qpoints=11;&lt;BR /&gt;group group;&lt;BR /&gt;var C9_21 C8_22 C8_23 C8_24 C10_25 C9_26 C10_27 C12_28 C12_29&lt;BR /&gt;C13_30 C11_31 C11_32 C12_33 C12_34 C13_35 C12_36 C11_37 C11_38 C11_39&lt;BR /&gt;C12_40;&lt;BR /&gt;model C9_21 C8_22 C8_23 C8_24 C10_25 C9_26 C10_27 C12_28 C12_29&lt;BR /&gt;C13_30 C11_31 C11_32 C12_33 C12_34 C13_35 C12_36 C11_37 C11_38 C11_39&lt;BR /&gt;C12_40/resfunc=threep;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Can someone please suggest how to correct my code so that the model converges?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 01:11:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-Won-t-Converge/m-p/857917#M42407</guid>
      <dc:creator>Rover17</dc:creator>
      <dc:date>2023-02-09T01:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IRT Won't Converge</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-Won-t-Converge/m-p/857945#M42408</link>
      <description>&lt;P&gt;Without any knowledge of your data it is hard to make a pointed suggestion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A default concept when a limit is exceeded is to see if you can change the limit. Since the warning is the M step you might consider increasing the MAXMITER which from the documentation:&lt;/P&gt;
&lt;DIV class="xis-refProc"&gt;
&lt;DIV id="statug.irt.irtproc" class="AAsection"&gt;
&lt;DIV id="statug.irt.irtoptslist" class="AAsection"&gt;
&lt;DIV class="AAoptions"&gt;
&lt;DL class="AAoptions"&gt;
&lt;DD&gt;
&lt;P&gt;specifies the maximum number of iterations in the maximization step of the EM algorithm. By default, MAXMITER=1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I might try setting it to larger values though I wouldn't start with anything very large.&lt;/P&gt;
&lt;P&gt;Other considerations would be things like the convergence criteria. I do see that the documentation states that the FCONV parameter is not used by the EM algorithm. Perhaps you want to use a different convergence criterion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may also want to consider that making a model converge does not mean that the result is actually good model.&lt;/P&gt;
&lt;/DD&gt;
&lt;/DL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Feb 2023 06:51:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-Won-t-Converge/m-p/857945#M42408</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-02-09T06:51:39Z</dc:date>
    </item>
  </channel>
</rss>

