<?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 Transformation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191093#M10122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. I do not give personal advice, but I am happy to answer questions on the online forums.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Oct 2014 16:44:12 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2014-10-20T16:44:12Z</dc:date>
    <item>
      <title>Correlation Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191087#M10116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have data that I need to do a correlation transformation for.&amp;nbsp; What is the general code to complete a correlation transformation?&amp;nbsp; After I receive this, I will try it with my data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much!&lt;/P&gt;&lt;P&gt;Jadallah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 14:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191087#M10116</guid>
      <dc:creator>jjadall1</dc:creator>
      <dc:date>2014-10-20T14:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191088#M10117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's a very vague phrase "correlation transformation". Could you provide some more information about what it is you want to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 14:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191088#M10117</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-10-20T14:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191089#M10118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paige,&lt;/P&gt;&lt;P&gt;I have a regression with 5 variables in it.&amp;nbsp; I need to do a correlation transformation to standardize the variables.&amp;nbsp; Should I use proc transreg or possibly something like the following?&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px; background-color: #ffffff;"&gt;Data step2;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px; background-color: #ffffff;"&gt;set "put your data file here";&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px; background-color: #ffffff;"&gt;/* now redefine new variables */&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px; background-color: #ffffff;"&gt;x2n = (x2 - x2bar) / x2sd * 1/sqrt(n-1);&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px; background-color: #ffffff;"&gt;Thanks!&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.7272720336914px; background-color: #ffffff;"&gt;Jadallah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 15:03:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191089#M10118</guid>
      <dc:creator>jjadall1</dc:creator>
      <dc:date>2014-10-20T15:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191090#M10119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use PROC STANDARD to standardize the variables ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 15:05:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191090#M10119</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-10-20T15:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191091#M10120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROC STDIZE has many variable transformations. See the complete list at &lt;A href="http://support.sas.com/documentation/cdl/en/statug/66859/HTML/default/viewer.htm#statug_stdize_details01.htm" title="http://support.sas.com/documentation/cdl/en/statug/66859/HTML/default/viewer.htm#statug_stdize_details01.htm"&gt;SAS/STAT(R) 13.1 User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt; Are you sure that you want 1/sqrt(n-1) as part of the transformation? The usual standardization is (x-xbar)/std, which is METHOD=STD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 15:21:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191091#M10120</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2014-10-20T15:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191092#M10121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rick,&lt;/P&gt;&lt;P&gt;Do you have a phone number where I can call you to discuss around 1 PM EST?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Jadallah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 15:43:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191092#M10121</guid>
      <dc:creator>jjadall1</dc:creator>
      <dc:date>2014-10-20T15:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: Correlation Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191093#M10122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. I do not give personal advice, but I am happy to answer questions on the online forums.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 16:44:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Correlation-Transformation/m-p/191093#M10122</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2014-10-20T16:44:12Z</dc:date>
    </item>
  </channel>
</rss>

