<?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: Creating 'itemresponseplot' after LCA in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Creating-itemresponseplot-after-LCA/m-p/799264#M15861</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I look at this paper :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Paper 5500-2016&lt;BR /&gt;Latent Class Analysis Using PROC LCA&lt;BR /&gt;Patricia A. Berglund, University of Michigan&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings16/5500-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/5500-2016.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;, your calling of the macro seems correct (on the condition that it was defined and compiled of course).&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Use the options&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint symbolgen mlogic source2;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and run again.&lt;BR /&gt;Then you get additional log on what may be wrong.&lt;BR /&gt;&lt;BR /&gt;Please note PROC LCA itself is a user-defined procedure not officially supported by SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
    <pubDate>Tue, 01 Mar 2022 09:20:14 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2022-03-01T09:20:14Z</dc:date>
    <item>
      <title>Creating 'itemresponseplot' after LCA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Creating-itemresponseplot-after-LCA/m-p/799218#M15860</link>
      <description>&lt;P&gt;&lt;FONT size="2"&gt;Hello, I am using PROC LCA function and I would like to create an item response plot. I followed user's guide "SAS Graphics Macros for Latent Class Analysis", but I am not sure what is wrong in order to create an item response plot. I downloaded the Macro function from &lt;A href="https://scholarsphere.psu.edu/resources/c3072c06-52ba-464b-9237-351857846b44" target="_blank" rel="noopener"&gt;https://scholarsphere.psu.edu/resources/c3072c06-52ba-464b-9237-351857846b44&lt;/A&gt; (&lt;A title="Download LcaGraphicsV2.zip" href="https://scholarsphere.psu.edu/resources/f6b542aa-ae5e-4be6-a279-f5d714217f3a/downloads/4387" target="_blank" rel="nofollow noopener"&gt;LcaGraphicsV2.zip &lt;/A&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;This is my first time using Macro function and I think the problem probably coming there but I have no clue where is the problem. I would appreciate some direction. Below was the code I used.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;%INCLUDE "C:\Program Files\SASHome\xxx\macro\LcaGraphicsV2.sas";

PROC LCA DATA=combined1 OUTPARAM=param3 OUTPOST=test3 OUTEST=est3 OUTSTDERR=std3 OUTSEEDs=;
	id idxx;
 	NCLASS 3;
	ITEMS surveyq2 surveyq3 surveyq4 surveyq5 surveyq6 surveyq7 surveyq8 ;
	CATEGORIES  4 4 4 4 4 4 4;
	SEED 100000;
	NSTARTS 20;
RUN;

%ItemResponsePlot(ParamDataset=param3);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 22:31:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Creating-itemresponseplot-after-LCA/m-p/799218#M15860</guid>
      <dc:creator>VKWS</dc:creator>
      <dc:date>2022-02-28T22:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Creating 'itemresponseplot' after LCA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Creating-itemresponseplot-after-LCA/m-p/799264#M15861</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I look at this paper :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Paper 5500-2016&lt;BR /&gt;Latent Class Analysis Using PROC LCA&lt;BR /&gt;Patricia A. Berglund, University of Michigan&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings16/5500-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/5500-2016.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;, your calling of the macro seems correct (on the condition that it was defined and compiled of course).&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Use the options&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint symbolgen mlogic source2;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and run again.&lt;BR /&gt;Then you get additional log on what may be wrong.&lt;BR /&gt;&lt;BR /&gt;Please note PROC LCA itself is a user-defined procedure not officially supported by SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 09:20:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Creating-itemresponseplot-after-LCA/m-p/799264#M15861</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-03-01T09:20:14Z</dc:date>
    </item>
  </channel>
</rss>

