<?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: Testing categorical variables in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606864#M29447</link>
    <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;My understanding is the chi-square test for independence can reject (or not) my null hypothesis&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you haven't specified a null hypothesis. As I said, if the null hypothesis is about association, you use Chi-Squared. If the null hypothesis is about X predicting Y, you use logistic regression. These two are not the same. And your original message isn't completely clear on which you are talking about, it seems you are talking about both interchangeably.&lt;/P&gt;</description>
    <pubDate>Mon, 25 Nov 2019 01:45:57 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-11-25T01:45:57Z</dc:date>
    <item>
      <title>Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606592#M29439</link>
      <description>&lt;P&gt;Hello SAS community, I have a categorical dependent variable (Y) and a categorical independent variable (X) what is the best way to determine if there is an association between X and Y?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sample data would look like this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
 infile datalines;
  input subject $ X Y;
datalines;
1 1 0
2 1 1
3 0 0
4 1 0
5 0 1
6 1 0
7 0 0
8 0 0
9 1 0
10 0 0
11 1 0
12 0 0
13 0 0
14 1 1
15 1 0
16 0 0
17 0 0
18 0 0
19 1 0
20 1 0
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I would like to know if X is 1 what is the change in likelihood Y will be 1? The null hypothesis would be there is no impact on Y. What is the best way to prove or disprove?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 22:21:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606592#M29439</guid>
      <dc:creator>supp</dc:creator>
      <dc:date>2019-11-22T22:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606593#M29440</link>
      <description>&lt;P&gt;In one sentence you talk of "association" and in another sentence you talk about a change in X changes the likelihood of Y. These are not the same. PROC LOGISTIC will predict the probability that Y is 1, given a value for X. Association would most likely&amp;nbsp; be done via the chi-squared test in PROC FREQ&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 22:27:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606593#M29440</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-11-22T22:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606665#M29441</link>
      <description>&lt;P&gt;Run proc FREQ with the MEASURES option in the TABLES statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check the details section of online doc for a description of the statistics. In particular,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_freq_details68.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_freq_details68.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2019 05:31:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606665#M29441</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-11-23T05:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606845#M29444</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp; for the direction. I spent some time getting familiar with the chi-square test for independence and the odds ratio. I think both could be relevant for my sceanatio.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My understanding is the chi-square test for independence can reject (or not) my null hypothesis with a certain level of confidence. Whereas the odd ration can quantify the strength of the relationship between X and Y. I will try running both tests on my data.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2019 22:23:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606845#M29444</guid>
      <dc:creator>supp</dc:creator>
      <dc:date>2019-11-24T22:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606864#M29447</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;My understanding is the chi-square test for independence can reject (or not) my null hypothesis&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you haven't specified a null hypothesis. As I said, if the null hypothesis is about association, you use Chi-Squared. If the null hypothesis is about X predicting Y, you use logistic regression. These two are not the same. And your original message isn't completely clear on which you are talking about, it seems you are talking about both interchangeably.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 01:45:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/606864#M29447</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-11-25T01:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/607027#M29460</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;, You are right in that I have not clearly stated the null hypothesis. So lets assume my null hypothesis is there is no relationship between X any Y with 95% confidence. I get the following results:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="403"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="2" style="width: 113px;"&gt;
&lt;P&gt;Observed&lt;/P&gt;
&lt;/TD&gt;
&lt;TD colspan="2" style="width: 233px;"&gt;
&lt;P&gt;Y&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 59px;"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;0&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;Total&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD rowspan="2" style="width: 59px;"&gt;
&lt;P&gt;X&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;
&lt;P&gt;0&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;1,360,524&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;1,073,073&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;2,433,597 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 40px;"&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;&amp;nbsp;194&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;7&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;201 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 59px;"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;
&lt;P&gt;&lt;STRONG&gt;Total&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;&lt;STRONG&gt;1,360,718 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;&lt;STRONG&gt;1,073,080 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;2,433,798 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 59px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 59px;"&gt;
&lt;P&gt;Expected&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD colspan="2" style="width: 233px;"&gt;
&lt;P&gt;Y&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 59px;"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;0&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD rowspan="2" style="width: 59px;"&gt;
&lt;P&gt;X&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;
&lt;P&gt;0&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;1,360,606&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;1,072,991&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;2,433,597 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 40px;"&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;112&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;89&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;201 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="width: 59px;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="width: 40px;"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 121px;"&gt;
&lt;P&gt;&lt;STRONG&gt;1,360,718 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 98px;"&gt;
&lt;P&gt;&lt;STRONG&gt;1,073,080 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD style="width: 63px;"&gt;
&lt;P&gt;&lt;STRONG&gt;2,433,798 &lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Chi-Square = 134.47 (P &amp;lt; .0001)&lt;/LI&gt;
&lt;LI&gt;Odds Ratio = 0.0457 (0.0215 - 0.0972)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I interpret this to mean I can reject the null hypothesis, meaning there is a relationship between X an Y. Further the odds ratio suggest a negative correlation between X an Y (this is a surprising result). If a subject is in program X then an outcome of Y (Y=1) is less likely.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are some more measures:&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Statistic&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;ASE&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Gamma&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.9125&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0322&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Kendall's Tau-b&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.0074&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0004&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Stuart's Tau-c&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Somers' D C|R&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.4061&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0129&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Somers' D R|C&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Pearson Correlation&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.0074&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0004&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Spearman Correlation&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.0074&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0004&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Lambda Asymmetric C|R&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Lambda Asymmetric R|C&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Lambda Symmetric&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Uncertainty Coefficient C|R&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Uncertainty Coefficient R|C&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0422&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0038&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;Uncertainty Coefficient Symmetric&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0000&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Mon, 25 Nov 2019 16:09:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/607027#M29460</guid>
      <dc:creator>supp</dc:creator>
      <dc:date>2019-11-25T16:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/607029#M29461</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18331"&gt;@supp&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;, You are right in that I have not clearly stated the null hypothesis. So lets assume my null hypothesis is there is no relationship between X any Y with 95% confidence. I get the following results:&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you talking about "association" or "predictability" when you say "relationship"? These terms have clear statistical meaning, and are different, but perhaps you are not aware of the difference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Predictability uses the value of X to predict Y. Association just wants to test whether X and Y tend to move together or not.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 16:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/607029#M29461</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-11-25T16:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Testing categorical variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/607033#M29462</link>
      <description>Right now I am just trying to understand if X an Y are associated. Or to state it another way ( I think) are X and Y independent of each other. Which it looks like they are not.</description>
      <pubDate>Mon, 25 Nov 2019 16:17:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-categorical-variables/m-p/607033#M29462</guid>
      <dc:creator>supp</dc:creator>
      <dc:date>2019-11-25T16:17:53Z</dc:date>
    </item>
  </channel>
</rss>

