<?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 proc corresp not including config plot in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-corresp-not-including-config-plot/m-p/840195#M332229</link>
    <description>&lt;P class=""&gt;Below is my code. I'm getting the output without error, but no plot.&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;data CHI.rep_sex;&lt;/P&gt;&lt;P class=""&gt;input Survey $ Sex $ Count; DATALINES;&lt;/P&gt;&lt;P class=""&gt;BRFSS MALE 80483&lt;/P&gt;&lt;P class=""&gt;BRFSS FEMALE 129994&lt;/P&gt;&lt;P class=""&gt;BRFSS MISSING 761&lt;/P&gt;&lt;P class=""&gt;VOH MALE 982&lt;/P&gt;&lt;P class=""&gt;VOH FEMALE 1817&lt;/P&gt;&lt;P class=""&gt;VOH MISSING 7&lt;/P&gt;&lt;P class=""&gt;;&lt;/P&gt;&lt;P class=""&gt;Run;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;ods graphics on;&lt;/P&gt;&lt;P class=""&gt;proc corresp data=CHI.rep_sex dimens=1;&lt;/P&gt;&lt;P class=""&gt;tables survey, sex;&lt;/P&gt;&lt;P class=""&gt;weight count;&lt;/P&gt;&lt;P class=""&gt;run;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Oct 2022 04:19:40 GMT</pubDate>
    <dc:creator>greesamu</dc:creator>
    <dc:date>2022-10-24T04:19:40Z</dc:date>
    <item>
      <title>proc corresp not including config plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-corresp-not-including-config-plot/m-p/840195#M332229</link>
      <description>&lt;P class=""&gt;Below is my code. I'm getting the output without error, but no plot.&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;data CHI.rep_sex;&lt;/P&gt;&lt;P class=""&gt;input Survey $ Sex $ Count; DATALINES;&lt;/P&gt;&lt;P class=""&gt;BRFSS MALE 80483&lt;/P&gt;&lt;P class=""&gt;BRFSS FEMALE 129994&lt;/P&gt;&lt;P class=""&gt;BRFSS MISSING 761&lt;/P&gt;&lt;P class=""&gt;VOH MALE 982&lt;/P&gt;&lt;P class=""&gt;VOH FEMALE 1817&lt;/P&gt;&lt;P class=""&gt;VOH MISSING 7&lt;/P&gt;&lt;P class=""&gt;;&lt;/P&gt;&lt;P class=""&gt;Run;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;ods graphics on;&lt;/P&gt;&lt;P class=""&gt;proc corresp data=CHI.rep_sex dimens=1;&lt;/P&gt;&lt;P class=""&gt;tables survey, sex;&lt;/P&gt;&lt;P class=""&gt;weight count;&lt;/P&gt;&lt;P class=""&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 04:19:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-corresp-not-including-config-plot/m-p/840195#M332229</guid>
      <dc:creator>greesamu</dc:creator>
      <dc:date>2022-10-24T04:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: proc corresp not including config plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-corresp-not-including-config-plot/m-p/840234#M332242</link>
      <description>&lt;P&gt;You are performing a simple correspondence analysis. The ConfigPlot is only available for multiple correspondence analysis. Try this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data rep_sex;
input Survey $ Sex $ Count; 
DATALINES;
BRFSS MALE 80483
BRFSS FEMALE 129994
BRFSS MISSING 761
VOH MALE 982
VOH FEMALE 1817
VOH MISSING 7
;

proc corresp data=rep_sex MCA;
tables sex survey;
weight count;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Oct 2022 11:05:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-corresp-not-including-config-plot/m-p/840234#M332242</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-10-24T11:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: proc corresp not including config plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-corresp-not-including-config-plot/m-p/840336#M332282</link>
      <description>&lt;P&gt;Perfect, thank you!!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 17:27:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-corresp-not-including-config-plot/m-p/840336#M332282</guid>
      <dc:creator>greesamu</dc:creator>
      <dc:date>2022-10-24T17:27:46Z</dc:date>
    </item>
  </channel>
</rss>

