<?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 doesn't produce output in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/525374#M26621</link>
    <description>&lt;P&gt;Hi, I have same problem as you. The computation takes very long time, especially for confirmatory&amp;nbsp; multidimensional models.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To make it faster, I relax the convergence criteria to gconv=1E-4 (I know this gives is less accurate estimates). I also found that the conjugate gradient optimization works fastest in complex models (technique=congra). And, for exploratory models I also relax the convergence on the criteria for finding the rotation matrix (rconverge=1E-3).&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jan 2019 11:17:29 GMT</pubDate>
    <dc:creator>JacobSimonsen</dc:creator>
    <dc:date>2019-01-08T11:17:29Z</dc:date>
    <item>
      <title>PROC IRT doesn't produce output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/524881#M26602</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run several IRT&amp;nbsp;models but they don't produce output...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This model is exploratory IRT with 10 factors. It takes a lot of time to run and runs on 100% CPU (I interrupted the program after about 2 hours).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc irt data = data resfunc = graded nfactor = 10 rotate = obvarimax;
var item1 - item65;
run; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This model is confirmatory IRT with 10 factors (each item loads only on one factor). It runs for about 15 minutes and then says "Insufficient memory." Produces output for factors (e.g., eigenvalues) but not for item parameters.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc irt data = data resfunc = graded;
var item1 - item65;
factor 
  F1 -&amp;gt; item1 - item5,
  F2 -&amp;gt; item6 - item10, 
  F3 -&amp;gt; item11 - item22,
  F4 -&amp;gt; item23 - item30,
  F5 -&amp;gt; item31 - item35,
  F6 -&amp;gt; item36 - item41, 
  F7 -&amp;gt; item42 - item49, 
  F8 -&amp;gt; item50 - item55, 
  F9 -&amp;gt; item56 - item60, 
  F10 -&amp;gt; item61 - item65;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I assume that the problem is in my computer -- it is not powerful enough to run such computationally demanding procedures. So, I wanted to ask if anybody knows what kind of computer I need to have to run these analyses (and whether it's at all possible)?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jan 2019 11:14:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/524881#M26602</guid>
      <dc:creator>Amanda_Lemon</dc:creator>
      <dc:date>2019-01-06T11:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IRT doesn't produce output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/525108#M26613</link>
      <description>&lt;P&gt;How many records are in your input data set?&lt;/P&gt;
&lt;P&gt;How many levels does each of your Item variables have? From the documentation:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;RESFUNC=GRADED for ordinal items. The graded response model assumes that the response variables are ordinal-categorical up to 11 levels.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So if your Item variables, or a subset of them, have more than 11 levels your data may be too complex for the model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 16:47:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/525108#M26613</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-07T16:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IRT doesn't produce output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/525310#M26618</link>
      <description>&lt;P&gt;I have over 700 records. 7 levels.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would also note that with a fewer number of factors (2 or 3) there are no problems.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 02:48:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/525310#M26618</guid>
      <dc:creator>Amanda_Lemon</dc:creator>
      <dc:date>2019-01-08T02:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IRT doesn't produce output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/525374#M26621</link>
      <description>&lt;P&gt;Hi, I have same problem as you. The computation takes very long time, especially for confirmatory&amp;nbsp; multidimensional models.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To make it faster, I relax the convergence criteria to gconv=1E-4 (I know this gives is less accurate estimates). I also found that the conjugate gradient optimization works fastest in complex models (technique=congra). And, for exploratory models I also relax the convergence on the criteria for finding the rotation matrix (rconverge=1E-3).&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 11:17:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-IRT-doesn-t-produce-output/m-p/525374#M26621</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2019-01-08T11:17:29Z</dc:date>
    </item>
  </channel>
</rss>

