<?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 Scree plot from proc corresp in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779398#M248207</link>
    <description>&lt;P&gt;Hi there. I want to run a multiple correspondence analysis. I cannot use proc corr as my variables are all categorical. I am using porc corresp but I am unsure of how to generate a scree plot. Below is my code&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc corresp mca data=clean2 dimens=2 outc=newout all;
tables race gender nsfasyn deptname campusname quintile;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What procedure would be better suited for MCA and how do I get a scree plot?&lt;/P&gt;</description>
    <pubDate>Tue, 09 Nov 2021 19:13:07 GMT</pubDate>
    <dc:creator>Nikster101</dc:creator>
    <dc:date>2021-11-09T19:13:07Z</dc:date>
    <item>
      <title>Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779398#M248207</link>
      <description>&lt;P&gt;Hi there. I want to run a multiple correspondence analysis. I cannot use proc corr as my variables are all categorical. I am using porc corresp but I am unsure of how to generate a scree plot. Below is my code&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc corresp mca data=clean2 dimens=2 outc=newout all;
tables race gender nsfasyn deptname campusname quintile;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What procedure would be better suited for MCA and how do I get a scree plot?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 19:13:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779398#M248207</guid>
      <dc:creator>Nikster101</dc:creator>
      <dc:date>2021-11-09T19:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779400#M248209</link>
      <description>&lt;P&gt;I think this is called the Inertia table (and plot) in SAS PROC CORRESP. Please take a look and see if that's what you are looking for.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, here's an example where it is calculated &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_code_crspex1.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_code_crspex1.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 19:35:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779400#M248209</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-09T19:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779407#M248212</link>
      <description>It is not quite what I am looking for. The Plot I need is a scree plot similar to that in principal component analysis with the 'elbow'. This was helpful though as I am now getting the inertia table</description>
      <pubDate>Tue, 09 Nov 2021 19:56:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779407#M248212</guid>
      <dc:creator>Nikster101</dc:creator>
      <dc:date>2021-11-09T19:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779409#M248213</link>
      <description>&lt;P&gt;Check out&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;post here - it might have some guideposts for you:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2017/08/02/retain-principal-components.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2017/08/02/retain-principal-components.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 20:01:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779409#M248213</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2021-11-09T20:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779412#M248215</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/380405"&gt;@Nikster101&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;It is not quite what I am looking for. The Plot I need is a scree plot similar to that in principal component analysis with the 'elbow'. This was helpful though as I am now getting the inertia table&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why is it "not quite" what you are looking for? It seems to me to be exactly what you are looking for.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 22:12:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779412#M248215</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-09T22:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779416#M248217</link>
      <description>&lt;P&gt;Well I need a plot like this,&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="PCAbrokenstiick2.png" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65534iA6D8787295398656/image-size/small?v=v2&amp;amp;px=200" role="button" title="PCAbrokenstiick2.png" alt="PCAbrokenstiick2.png" /&gt;&lt;/span&gt;&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;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i.e. A scree plot. I am not unsure of how to generate this plot in the proc corresp function.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 20:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779416#M248217</guid>
      <dc:creator>Nikster101</dc:creator>
      <dc:date>2021-11-09T20:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779449#M248238</link>
      <description>&lt;P&gt;That's exactly what they give you; except they use bars to represent the value instead of a series of lines to represent the value.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 22:05:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779449#M248238</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-09T22:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779461#M248245</link>
      <description>Yes I understand that, I was just wanting to know if getting an plot representation of it was possible.</description>
      <pubDate>Tue, 09 Nov 2021 22:40:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779461#M248245</guid>
      <dc:creator>Nikster101</dc:creator>
      <dc:date>2021-11-09T22:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Scree plot from proc corresp</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779463#M248246</link>
      <description>&lt;P&gt;So form over function? If it isn't a line plot, you can't use it? Even if the information is the same?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is nothing stopping you from plotting it yourself using PROC SGPLOT and then it can look &lt;EM&gt;exactly&lt;/EM&gt; the way you want it to look.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 22:42:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scree-plot-from-proc-corresp/m-p/779463#M248246</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-09T22:42:43Z</dc:date>
    </item>
  </channel>
</rss>

