<?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: confirmatory factor analysis - calculate the explained variance in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888156#M350914</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please don't open the same topic twice in different boards. It will cause confusion and dilutes answer quality.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As "Statistical Procedures" is the right board, I refer everyone to the duplicate of this :&lt;/P&gt;
&lt;P&gt;confirmatory factor analysis - calculate the explained variance&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888133" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888133&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
    <pubDate>Mon, 07 Aug 2023 15:47:51 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2023-08-07T15:47:51Z</dc:date>
    <item>
      <title>confirmatory factor analysis - calculate the explained variance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888132#M350908</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I performed a confirmatory factor analysis with proc calis (see code below).&lt;/P&gt;&lt;P&gt;I also want to report the '% of the explained variance' for this model (as this was also reported in the same way by other papers).&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I calculate this explained variance?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;ods graphics on;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;proc calis data = final plots=pathdiagram outstat&amp;nbsp; = test ;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;factor&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D1a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D2a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D3a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D5a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D6a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D9a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D11a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D12a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role ==&amp;gt; D14a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role ==&amp;gt; D4a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role ==&amp;gt; D7a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role ==&amp;gt; D8a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role ==&amp;gt; D10a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role ==&amp;gt; D13a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role ==&amp;gt; D15a_s,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role ==&amp;gt; D16a_s;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;pvar&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_social_role = 1.,&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;freq_personal_role = 1.;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;fitindex&amp;nbsp; noindextype on(only)=[chisq df probchi rmsea&amp;nbsp; srmr bentlercfi];&lt;/DIV&gt;&lt;DIV&gt;run;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ods graphics off;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 14:21:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888132#M350908</guid>
      <dc:creator>ablond</dc:creator>
      <dc:date>2023-08-07T14:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: confirmatory factor analysis - calculate the explained variance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888156#M350914</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please don't open the same topic twice in different boards. It will cause confusion and dilutes answer quality.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As "Statistical Procedures" is the right board, I refer everyone to the duplicate of this :&lt;/P&gt;
&lt;P&gt;confirmatory factor analysis - calculate the explained variance&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888133" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888133&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 15:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/confirmatory-factor-analysis-calculate-the-explained-variance/m-p/888156#M350914</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-08-07T15:47:51Z</dc:date>
    </item>
  </channel>
</rss>

