<?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: Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686128#M33045</link>
    <description>&lt;P&gt;Glad to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To your follow up question, an odds ratio estimate, for example as computed by the LSMEANS statement, is typically used to assess the effect of a predictor from the response model on the outcome on the odds ratio scale. Alternating logistic regression (ALR) on the other hand uses a log odds ratio model to model the association between observations within a cluster instead of estimating the correlations for a given working correlation structure. As described in the &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_details29.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en#statug.genmod.genmodalr0" target="_self"&gt;“Alternating Logistic Regression”&lt;/A&gt; section of the documentation, the log odds ratio model estimates regression parameters for coefficients that are fixed based on the structure you have specified by using the &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_syntax26.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en#statug.genmod.repeatlogoropt" target="_self"&gt;LOGOR=&lt;/A&gt; option. I am not aware of any similar method like ALR for data with a Poisson response, and am not sure if one would be necessary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are looking to use a modified Poisson approach to estimate the relative risk, associated with a predictor in the response model, for binary response data you might look at the discussion of Zou’s method at the end of&lt;A href="https://support.sas.com/kb/23/003.html" target="_self"&gt; this Usage Note&lt;/A&gt; and the references it provides. &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Sep 2020 16:36:06 GMT</pubDate>
    <dc:creator>MichaelL_SAS</dc:creator>
    <dc:date>2020-09-23T16:36:06Z</dc:date>
    <item>
      <title>Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/685911#M33032</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been running a GEE model for binary outcome.&amp;nbsp;The GEE model includes 4 predictors.&lt;/P&gt;
&lt;P&gt;Data is longitudinal (3 repeated measurements).&lt;/P&gt;
&lt;P&gt;I was asked for checking the "Correlation coefficient boundaries" before selecting the Correlation matrix.&lt;/P&gt;
&lt;P&gt;I did not know about this issue before. I just know some principles when selecting the correlation matrix&amp;nbsp;(independent, unstructured, ....)&lt;/P&gt;
&lt;P&gt;My questions are:&lt;/P&gt;
&lt;P&gt;1. What are correlation coefficient boundaries ?&lt;/P&gt;
&lt;P&gt;2. What is the relationship between&amp;nbsp;"Correlation coefficient boundaries" and some Correlation matrix (independent, unstructured, ....)&lt;/P&gt;
&lt;P&gt;3. What are methods in SAS for checking correlation coefficient boundaries? Is it necessary to check those boundaries? Or SAS uses other methods for selecting the correlation matrix for GEE model with binary outcome?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm very thankful for your great support!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 23:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/685911#M33032</guid>
      <dc:creator>Minhtrang</dc:creator>
      <dc:date>2020-09-22T23:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/685922#M33034</link>
      <description>&lt;P&gt;Good questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For binary data, the correlation between two observations is going to be constrained by their means. This relationship is not accounted for in the moment based estimator GEE models typically use for the working correlation matrix. As a result you, could end up with predicted means from the response model and a working correlation matrix estimate that violate the range restrictions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Often these potential range restriction violations are ignored since for most applications of GEE models the association between the observations is treated as a nuisance parameter and the primary scientific interest is in the response model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In situations where the the association between observations might be of interest, or you are especially concerned about possible range violations for some reason, one alternative would be to use alternating logistic regression. This approach models the association between pairs of binary observations by using a model for the logarithm of the odds ratio instead of correlations. Both PROC GEE and PROC GENMOD support the use of alternating logistic regression for binary response data. PROC GEE also supports an extension of alternating logistic regression for ordinal response data. To request the use of alternating logistic regression in either procedure, you would use the &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_syntax26.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.genmod.repeatlogoropt" target="_self"&gt;LOGOR=&lt;/A&gt; option instead of the TYPE= option in the REPEATED statement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For examples of using alternating logistic regression for binary response data, you can see &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_examples06.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;Example 48.6&lt;/A&gt; in the PROC GENMOD documentation or &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetVersion=15.1&amp;amp;docsetTarget=statug_gee_examples04.htm&amp;amp;locale=en" target="_self"&gt;Example 47.4&lt;/A&gt;&amp;nbsp;in the PROC GEE documentation. &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_gee_examples05.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;Example 47.5&lt;/A&gt; in the PROC GEE documentation provides an example of alternating logistic regression for ordinal response data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more information about alternating logistic regression, you can also refer to the &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_gee_details06.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;"Alternating Logistic Regression"&lt;/A&gt; section in the documentation for either PROC GEE or PROC GENMOD.&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;&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;</description>
      <pubDate>Wed, 23 Sep 2020 01:50:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/685922#M33034</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2020-09-23T01:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/685933#M33035</link>
      <description>&lt;P&gt;Dear Michaeil_SAS,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your clear explanation!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Only one more question: If the outcome variable follow Poisson distribution, and I want to calculate Risk Ratio instead of Odds Ratio, are there any methods similar to the so-called "Alternating logistic regression" for Poisson distribution? Could you suggest a reference for&amp;nbsp; this issue?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Sep 2020 03:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/685933#M33035</guid>
      <dc:creator>Minhtrang</dc:creator>
      <dc:date>2020-09-23T03:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686021#M33040</link>
      <description>&lt;P&gt;Check REPEATED Statement Options : CORRB&lt;BR /&gt;Calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Sep 2020 12:32:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686021#M33040</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-09-23T12:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686128#M33045</link>
      <description>&lt;P&gt;Glad to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To your follow up question, an odds ratio estimate, for example as computed by the LSMEANS statement, is typically used to assess the effect of a predictor from the response model on the outcome on the odds ratio scale. Alternating logistic regression (ALR) on the other hand uses a log odds ratio model to model the association between observations within a cluster instead of estimating the correlations for a given working correlation structure. As described in the &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_details29.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en#statug.genmod.genmodalr0" target="_self"&gt;“Alternating Logistic Regression”&lt;/A&gt; section of the documentation, the log odds ratio model estimates regression parameters for coefficients that are fixed based on the structure you have specified by using the &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_syntax26.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en#statug.genmod.repeatlogoropt" target="_self"&gt;LOGOR=&lt;/A&gt; option. I am not aware of any similar method like ALR for data with a Poisson response, and am not sure if one would be necessary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are looking to use a modified Poisson approach to estimate the relative risk, associated with a predictor in the response model, for binary response data you might look at the discussion of Zou’s method at the end of&lt;A href="https://support.sas.com/kb/23/003.html" target="_self"&gt; this Usage Note&lt;/A&gt; and the references it provides. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Sep 2020 16:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686128#M33045</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2020-09-23T16:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686265#M33050</link>
      <description>&lt;P&gt;Hi Ksharp,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your suggestion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you help me a bit more by explaining the term "correlation coefficient boundaries" in repeated measurement analysis? Is it similar to correlation matrix? For binary data, is it necessary to check for ""correlation coefficient boundaries"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did not see this term&amp;nbsp;"correlation coefficient boundaries" in books or other documents on the topic of&amp;nbsp;repeated measurement analysis or longitudinal data analysis.&lt;/P&gt;
&lt;P&gt;I was asked by a reviewer, and I'm not sure if he asks the right question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you once again!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 03:01:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686265#M33050</guid>
      <dc:creator>Minhtrang</dc:creator>
      <dc:date>2020-09-24T03:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation coefficient boundaries/ Correlation matrix _ Generalized Equation Estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686267#M33051</link>
      <description>&lt;P&gt;Thank you very much for your great help!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm still not clear about the so-called "correlation coefficient boundaries".&lt;/P&gt;
&lt;P&gt;I did not hear about or see&amp;nbsp; this term in books or documents on the topic of repeated measure analysis.&lt;/P&gt;
&lt;P&gt;Is it similar to correlation matrix?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was asked by a reviewer. I'm not sure if he asks the right question.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 03:08:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-coefficient-boundaries-Correlation-matrix/m-p/686267#M33051</guid>
      <dc:creator>Minhtrang</dc:creator>
      <dc:date>2020-09-24T03:08:28Z</dc:date>
    </item>
  </channel>
</rss>

