<?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: Visualizing associations between categorical variables in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981866#M25781</link>
    <description>40 stands for the length of variable ROW .&lt;BR /&gt;Just make it  bigger to include these ROW value.</description>
    <pubDate>Tue, 13 Jan 2026 03:50:35 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2026-01-13T03:50:35Z</dc:date>
    <item>
      <title>Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981789#M25769</link>
      <description>&lt;P&gt;Dear SAS Community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was looking for a way of visualizing the association between different categorical variables (nominal and ordinal variables). Since a heatmap will probably not work for categorical variables I think that a correspondence analysis should be a good option. Is it ok to include nominal (more than two levels) and also ordinal variables together in a correspondence analysis?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would greatly appreciate your feedback!&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jan 2026 00:51:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981789#M25769</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2026-01-10T00:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981792#M25770</link>
      <description>&lt;P&gt;Yes. You could could . since PROC CORRESP is just decomposing the chi-square value of contingency table, no matter this category variable is nominal or ordinal .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc corresp data=sashelp.heart all chi2p;
tables bp_status,weight_status;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1768029689455.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/112574i9725A4F875883600/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1768029689455.png" alt="Ksharp_0-1768029689455.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;And I also think you could use heatmap to visualize it. Here is an example:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/06/26/advanced-ods-graphics-range-attribute-maps/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2017/06/26/advanced-ods-graphics-range-attribute-maps/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jan 2026 07:28:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981792#M25770</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-01-10T07:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981848#M25773</link>
      <description>&lt;P&gt;That's great, thank you so much Ksharp!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That heatmap looks great, I really want to try it with my data but I was having problems when inputting my data in the first data step.&amp;nbsp; One of my variables is ' Ethnicity' (7 levels) and the other one is 'overall1' which is a score that goes from 1 to 9 (1 2 3 4 5 6 7 8 9). I put it like this in Col but it didn't work out. I highlighted the statement "do" and "count" because I'm not sure what to include in them. Count should be the numbers I have after each ethnicity level which is the freq of each score for every level of ethnicity. I hope it makes sense. I would greatly appreciate if you could help me.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data one(drop=f: i);&lt;BR /&gt;input Row $ 1-7 f1-f9;&lt;BR /&gt;array f[9];&lt;BR /&gt;&lt;STRONG&gt;do i = 0 to 5;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Col = 1 2 3 4 5 6 7 8 9;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Count = i;&lt;/STRONG&gt;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;datalines;&lt;BR /&gt;Asian 0 0 0 1 4 3 6 4 0&lt;BR /&gt;African American 0 1 7 16 8 37 57 44 8&lt;BR /&gt;Caucasian 0 1 4 13 6 24 51 38 9&lt;BR /&gt;Hispanic 0 0 0 0 0 0 0 0 0&lt;BR /&gt;Native American 5 1 12 24 24 82 108 90 12&lt;BR /&gt;Middle Eastern 0 1 2 10 15 24 31 27 6&lt;BR /&gt;Pacific Islander 0 0 1 0 0 3 0 0 0&lt;BR /&gt;;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2026 19:38:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981848#M25773</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2026-01-12T19:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981850#M25774</link>
      <description>&lt;P&gt;No time at this moment to&amp;nbsp;work it out for you ... but maybe the author of that blog can help you out quicker.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16777"&gt;@WarrenKuhfeld&lt;/a&gt;&amp;nbsp; , can you?&lt;/P&gt;
&lt;DIV class="heading cf"&gt;
&lt;H1 class="post-title item fn"&gt;Advanced ODS Graphics: Range Attribute Maps&lt;/H1&gt;
&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;&lt;SPAN class="posted-by"&gt;By&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="reviewer"&gt;&lt;A title="Posts by Warren F. Kuhfeld" href="https://blogs.sas.com/content/author/warrenkuhfeld/" rel="author" target="_blank"&gt;Warren F. Kuhfeld&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;on&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;Graphically Speaking&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="posted-on"&gt;&lt;SPAN class="dtreviewed"&gt;&lt;TIME class="value-title" title="2017-06-26" datetime="2017-06-26T16:19:03-04:00"&gt;June 26, 2017&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/06/26/advanced-ods-graphics-range-attribute-maps/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2017/06/26/advanced-ods-graphics-range-attribute-maps/&lt;/A&gt;&lt;BR /&gt;&lt;/TIME&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;&lt;SPAN class="posted-on"&gt;&lt;SPAN class="dtreviewed"&gt;Ciao,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;&lt;SPAN class="posted-on"&gt;&lt;SPAN class="dtreviewed"&gt;Koen&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 12 Jan 2026 22:19:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981850#M25774</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2026-01-12T22:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981851#M25775</link>
      <description>&lt;P&gt;See also ...&lt;/P&gt;
&lt;DIV class="heading cf"&gt;
&lt;H1 class="post-title item fn"&gt;Create mosaic plots in SAS by using PROC FREQ&lt;/H1&gt;
&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;&lt;SPAN class="posted-by"&gt;By&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="reviewer"&gt;&lt;A title="Posts by Rick Wicklin" href="https://blogs.sas.com/content/author/rickwicklin/" rel="author" target="_blank"&gt;Rick Wicklin&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;on&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://blogs.sas.com/content/iml/" target="_blank"&gt;The DO Loop&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="posted-on"&gt;&lt;SPAN class="dtreviewed"&gt;&lt;TIME class="value-title" title="2013-11-04" datetime="2013-11-04T05:21:57-05:00"&gt;November 4, 2013&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2013/11/04/create-mosaic-plots-in-sas-by-using-proc-freq.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2013/11/04/create-mosaic-plots-in-sas-by-using-proc-freq.html&lt;/A&gt;&lt;BR /&gt;&lt;/TIME&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;&lt;SPAN class="posted-on"&gt;&lt;SPAN class="dtreviewed"&gt;And this is&amp;nbsp;a 2001 paper by a visualization guru (prof. Michael Friendly). The macros are probably no longer available and the graphics is not looking&amp;nbsp;&lt;SPAN&gt;modern (better aesthetics&lt;/SPAN&gt;&amp;nbsp;can be achieved nowadays), but it is still very useful to read.&lt;BR /&gt;&lt;SPAN class="MarkdownComponent__markdownText___UNa25"&gt;&lt;STRONG&gt;Title:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;A Reader’s Guide to Visualizing Categorical Data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="MarkdownComponent__markdownText___UNa25"&gt;&lt;STRONG&gt;Author:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Michael Friendly&amp;nbsp;&lt;BR /&gt;SUGI 26 -- 2001&lt;BR /&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/sugi26/p173-26.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/sugi26/p173-26.pdf&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;Ciao,&lt;/DIV&gt;
&lt;DIV class="post-meta cf"&gt;Koen&lt;/DIV&gt;</description>
      <pubDate>Mon, 12 Jan 2026 22:37:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981851#M25775</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2026-01-12T22:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981856#M25776</link>
      <description>&lt;P&gt;Not sure what that data step is trying to do.&amp;nbsp; But with those datalines (with an extra space inserted after the Ethnicity value so the lines can be parsed properly) are trivial to read in.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input ethnicity &amp;amp;:$16. @;
  do overall=1 to 9;
    input count @;
    output;
  end;
datalines;
Asian  0 0 0 1 4 3 6 4 0
African American  0 1 7 16 8 37 57 44 8
Caucasian  0 1 4 13 6 24 51 38 9
Hispanic  0 0 0 0 0 0 0 0 0
Native American  5 1 12 24 24 82 108 90 12
Middle Eastern  0 1 2 10 15 24 31 27 6
Pacific Islander  0 0 1 0 0 3 0 0 0
;

proc corresp data=have all chi2p;
 tables ethnicity,overall;
 weight count;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-01-12 at 8.54.11 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/112586iBC83B2C5F4CC2B70/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2026-01-12 at 8.54.11 PM.png" alt="Screenshot 2026-01-12 at 8.54.11 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 01:54:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981856#M25776</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2026-01-13T01:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981859#M25777</link>
      <description>&lt;P&gt;OK. Here you go.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data pop;
infile cards truncover;
input Row &amp;amp; $40. @;
do col = '1','2','3','4','5','6','7','8','9';
 input count @;
 output;
end;
datalines;
Asian              0 0 0 1 4 3 6 4 0
African American   0 1 7 16 8 37 57 44 8
Caucasian          0 1 4 13 6 24 51 38 9
Hispanic           0 0 0 0 0 0 0 0 0
Native American    5 1 12 24 24 82 108 90 12
Middle Eastern     0 1 2 10 15 24 31 27 6
Pacific Islander   0 0 1 0 0 3 0 0 0
;


proc freq data=pop; /* Row and column marginals */
   weight count/zero;
   tables row / noprint out=f2(drop=percent rename=(count=RowF row=mRow));
   tables col / noprint out=f3(drop=percent rename=(count=ColF col=mCol));
run;


data all1;
   if 0 then merge pop f2 f3;
   low = 0;
   x0  = 35; * 35 is the x axis value of margin freq;
   if _n_ = 1 then do;
      row = ' ';   col = ' ';  mrow = ' '; mcol = ' ';
      count = 0;   rowf = 0;   colf = 0;   output;
      count = 358; rowf = 358; colf = 358; output; * 358 is the max count in margin freq;
   end;
   merge pop f2 f3;
   output;
run;



ods graphics on / height=4.9in width=6.2in;
title;
proc sgplot data=all1 noautolegend noborder ;
   heatmapparm y=row x=col colorresponse=count /colormodel=(white cx6767bb cxbb67bb cxdd2255);
   text        y=row x=col text=count/ textattrs=(size=8) strip contributeoffsets=none;
   highlow y=mrow low=low   high=rowf / x2axis 
type=bar barwidth=0.95 nooutline colormodel=(white cx6767bb cxbb67bb cxdd2255) colorresponse=rowf;
   text    y=mrow x=x0      text=rowf / x2axis textattrs=(size=8) strip contributeoffsets=none;
   highlow x=mcol low=low   high=colf / y2axis 
type=bar barwidth=0.95 nooutline colormodel=(white cx6767bb cxbb67bb cxdd2255) colorresponse=colf;
   text    x=mcol y=x0      text=colf / y2axis textattrs=(size=8) strip contributeoffsets=none;
   xaxis   display=(nolabel noticks noline) offsetmax=.3;
   yaxis   display=(nolabel noticks noline) offsetmin=.3 reverse;
   x2axis  display=none     offsetmin=.75 offsetmax=.03;
   y2axis  display=none     offsetmin=.75 offsetmax=.03;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1768270686692.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/112587iD9DCC8385E6E60D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1768270686692.png" alt="Ksharp_0-1768270686692.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 02:18:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981859#M25777</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-01-13T02:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981863#M25778</link>
      <description>&lt;P&gt;Fantastic, thank you so much Ksharp!! Just one more question if you don't mind:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what does the number 40 stands for in the input row statement?&lt;/P&gt;
&lt;P&gt;input Row &amp;amp; $40. @;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 03:46:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981863#M25778</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2026-01-13T03:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981864#M25779</link>
      <description>&lt;P&gt;That was also very helpful, thank you Tom!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 03:47:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981864#M25779</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2026-01-13T03:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981865#M25780</link>
      <description>&lt;P&gt;Thank you very much for the link to that article Koen!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 03:48:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981865#M25780</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2026-01-13T03:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981866#M25781</link>
      <description>40 stands for the length of variable ROW .&lt;BR /&gt;Just make it  bigger to include these ROW value.</description>
      <pubDate>Tue, 13 Jan 2026 03:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981866#M25781</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2026-01-13T03:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981867#M25782</link>
      <description>&lt;P&gt;Oh ok, thank you so much, you were so helpful!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 04:13:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981867#M25782</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2026-01-13T04:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981884#M25783</link>
      <description>&lt;P&gt;Is there some specific question? Having retired 7 years ago and written that post 9 years ago, this is not a topic that I have thought about in a long time.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 15:51:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981884#M25783</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2026-01-13T15:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Visualizing associations between categorical variables</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981885#M25784</link>
      <description>&lt;P&gt;No worries. The question has since been answered.&lt;BR /&gt;Thank you for staying active on the SAS Communities, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16777"&gt;@WarrenKuhfeld&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ciao,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 16:01:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Visualizing-associations-between-categorical-variables/m-p/981885#M25784</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2026-01-13T16:01:21Z</dc:date>
    </item>
  </channel>
</rss>

