<?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: proc pls and logarithm in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175002#M44918</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not mentioned in the help documentation for PROC PLS, and doesn't work for me in SAS 9.4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to create the logarithm of the variable in a data step prior to PROC PLS, and then you can use that logarithm as the Y variable in PROC PLS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 May 2014 12:08:24 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2014-05-28T12:08:24Z</dc:date>
    <item>
      <title>proc pls and logarithm</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175000#M44916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My man-a told me recently there is a way to have a PLS with logarithm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However , I checked on the proc pls documentation and I found nothing relevant. I looked on the internet and I found nothing relevant as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone of you have any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 07:56:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175000#M44916</guid>
      <dc:creator>andy_wk</dc:creator>
      <dc:date>2014-05-28T07:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: proc pls and logarithm</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175001#M44917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After talking with my colleague, it seems I have the beginnning of a hint:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc pls data=dataset ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;model &lt;STRONG&gt;log&lt;/STRONG&gt;(Y) = x1 ... xn;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;output out=datasetname predicted=var_name;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all for reading.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 09:28:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175001#M44917</guid>
      <dc:creator>andy_wk</dc:creator>
      <dc:date>2014-05-28T09:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: proc pls and logarithm</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175002#M44918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not mentioned in the help documentation for PROC PLS, and doesn't work for me in SAS 9.4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to create the logarithm of the variable in a data step prior to PROC PLS, and then you can use that logarithm as the Y variable in PROC PLS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 12:08:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175002#M44918</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-05-28T12:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: proc pls and logarithm</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175003#M44919</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;&lt;/P&gt;&lt;P&gt;You are right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I double checked with my colleague and we need to have the dataset transformed to log , prior to the PLS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the 3 following combinations :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Log Y = not log X&lt;/P&gt;&lt;P&gt;not Log Y = Log X&lt;/P&gt;&lt;P&gt;Log Y = Log X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then with my need, I'm using one of the transformed dataset for the proc PLS. Y has only one variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the feedback.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 13:08:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175003#M44919</guid>
      <dc:creator>andy_wk</dc:creator>
      <dc:date>2014-05-28T13:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: proc pls and logarithm</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175004#M44920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paige,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got a quick one. I took the following option : &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;not Log Y = Log X&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got that error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NOTE: Maximum number of factors to extract set to 15.&amp;nbsp; This may be too high; you should consider using either NFAC= or &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the CV= to set the number of factors.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WARNING: Data scaling prevents scores and loadings from being represented as correlations; Correlation Loading Plot not &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; produced.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 14:30:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175004#M44920</guid>
      <dc:creator>andy_wk</dc:creator>
      <dc:date>2014-05-28T14:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc pls and logarithm</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175005#M44921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have no idea what this means&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;I took the following option : &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;not Log Y = Log X&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if you want someone to explain your error message, then we would need to see the relevant parts of the SASLOG, including the actual code that produced the error messages.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 14:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175005#M44921</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-05-28T14:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: proc pls and logarithm</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175006#M44922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I meant I chose Y has not been changed to log and all the Xs have been changed to log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help. I will do my homework thoroughly before putting my code and my log.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 15:01:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-pls-and-logarithm/m-p/175006#M44922</guid>
      <dc:creator>andy_wk</dc:creator>
      <dc:date>2014-05-28T15:01:34Z</dc:date>
    </item>
  </channel>
</rss>

