<?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: How to understand the ODS output table ItemInfoCurve in PROC IRT ? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-understand-the-ODS-output-table-ItemInfoCurve-in-PROC-IRT/m-p/719145#M222634</link>
    <description>&lt;P&gt;You are correct: that output is unclear and difficult to work with.&lt;/P&gt;
&lt;P&gt;By looking at the output data, you can see that each curve is represented by 101 points. Therefore if you create a new variable PlotNum=ceil(_N_/101), you will correctly identify the curves.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an example that uses the data in &lt;A href="https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_irt_gettingstarted.htm&amp;amp;locale=en" target="_self"&gt;the Getting Started example in the PROC IRT documentation&lt;/A&gt;:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc irt data=IrtBinary plots(unpack)=IIC;
   var item1-item10;
   ods output ItemInfoCurve=II_0;
run;

data II;
set II_0;
PlotNum = ceil(_N_ / 101);
run;

proc sgpanel data=II;
   panelby PlotNum / columns=3 rows=2;
   series x=Trait y=ItemInfo;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 13 Feb 2021 20:47:05 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2021-02-13T20:47:05Z</dc:date>
    <item>
      <title>How to understand the ODS output table ItemInfoCurve in PROC IRT ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-understand-the-ODS-output-table-ItemInfoCurve-in-PROC-IRT/m-p/718897#M222523</link>
      <description>&lt;P&gt;When I specify&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ods output IRT.ItemInfo.ItemInfoCurve=II;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the output data set seems to be stacked (~100 lines per item), but with no indication about which item provides which values ?&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2021 14:32:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-understand-the-ODS-output-table-ItemInfoCurve-in-PROC-IRT/m-p/718897#M222523</guid>
      <dc:creator>karlbang</dc:creator>
      <dc:date>2021-02-12T14:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to understand the ODS output table ItemInfoCurve in PROC IRT ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-understand-the-ODS-output-table-ItemInfoCurve-in-PROC-IRT/m-p/719145#M222634</link>
      <description>&lt;P&gt;You are correct: that output is unclear and difficult to work with.&lt;/P&gt;
&lt;P&gt;By looking at the output data, you can see that each curve is represented by 101 points. Therefore if you create a new variable PlotNum=ceil(_N_/101), you will correctly identify the curves.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an example that uses the data in &lt;A href="https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_irt_gettingstarted.htm&amp;amp;locale=en" target="_self"&gt;the Getting Started example in the PROC IRT documentation&lt;/A&gt;:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc irt data=IrtBinary plots(unpack)=IIC;
   var item1-item10;
   ods output ItemInfoCurve=II_0;
run;

data II;
set II_0;
PlotNum = ceil(_N_ / 101);
run;

proc sgpanel data=II;
   panelby PlotNum / columns=3 rows=2;
   series x=Trait y=ItemInfo;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 20:47:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-understand-the-ODS-output-table-ItemInfoCurve-in-PROC-IRT/m-p/719145#M222634</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-02-13T20:47:05Z</dc:date>
    </item>
  </channel>
</rss>

