<?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: Univariate Box-Cox Transformation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778973#M38209</link>
    <description>&lt;P&gt;There are several papers about the univariate Box-Cox transformation. See&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.lexjansen.com/nesug/nesug04/an/an12.pdf" target="_self"&gt;Coleman, 2004&lt;/A&gt;, "A Fast, High-Precision Implementation of the Univariate One-Parameter Box-Cox&lt;BR /&gt;Transformation Using the Golden Section Search in SAS/IML", NESUG proceedings&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings12/430-2012.pdf" target="_self"&gt;LaLonde, 2012&lt;/A&gt;, "Transforming Variables for Normality and Linearity–When, How, Why and Why Not's", SAS Global Forum proceedings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;KSharp: You have asked me to write about the Box-Cox transformation several times.&amp;nbsp;What is it you find confusing? What do you want me to say about this topic?&lt;/P&gt;</description>
    <pubDate>Sun, 07 Nov 2021 10:43:59 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2021-11-07T10:43:59Z</dc:date>
    <item>
      <title>Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778941#M38195</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simply want to use Box-Cox to transform a single variable. However, most of the code I've seen requires 2 variables (dependent &amp;amp; independent) and does not save the transformed variable. The "Univariate Box-Cox" seems most relevant, but I can't understand how to run it. This is the SAS example below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=""&gt;title 'Univariate Box-Cox';

data x;
   call streaminit(17);
   z = 0;
   do i = 1 to 500;
      y = rand('lognormal');
      output;
   end;
run;

proc transreg maxiter=0 nozeroconstant;
   model BoxCox(y) = identity(z);
   output;
run;

proc univariate noprint;
   histogram y ty;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that "x" is going to be my dataset and "z" is the constant (0), but I can't figure out exactly what to do with the variable I want transformed (y). I don't understand how putting the variable I want transformed in the "y" place in the&amp;nbsp;&lt;EM&gt;"y = rand('lognormal')"&lt;/EM&gt; code works. My original (y) variable values are just going to be overwritten by the&amp;nbsp;&lt;EM&gt;= rand('lognormal')&lt;/EM&gt;. I ran the code below and got values that are exactly the same as if I just made up a variable in the&amp;nbsp;&lt;EM&gt;"y = rand('lognormal') &lt;/EM&gt;portion.&lt;/P&gt;&lt;PRE&gt;Data newdataset;&lt;BR /&gt;set olddataset;&lt;BR /&gt;&lt;BR /&gt;   call streaminit(17);&lt;BR /&gt;   z = 0;&lt;BR /&gt;   do i = 1 to 500;&lt;BR /&gt;      myvariable = rand('lognormal');&lt;BR /&gt;      output;&lt;BR /&gt;      end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc transreg Data = newdataset maxiter=0 nozeroconstant;&lt;BR /&gt;   model BoxCox(myvariable) = identity(z);&lt;BR /&gt;   output;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would greatly appreciate any guidance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Nov 2021 16:09:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778941#M38195</guid>
      <dc:creator>jmguzman</dc:creator>
      <dc:date>2021-11-06T16:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778944#M38196</link>
      <description>Where did you find that example? SAS examples usually have comments or some explanation around them. &lt;BR /&gt;&lt;BR /&gt;The first step, that creates the dataset X is only to create sample data for the example. You would replace that with your own data source and start at the transreg step. &lt;BR /&gt;&lt;BR /&gt;proc transreg data=olddataset nozeroconstant;&lt;BR /&gt;model boxcox(myVariable) = identify(z);&lt;BR /&gt;output out=want;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Check the want data set to see what you get.</description>
      <pubDate>Sat, 06 Nov 2021 19:21:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778944#M38196</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-06T19:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778946#M38197</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the example from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/391825"&gt;@jmguzman&lt;/a&gt;&amp;nbsp;was based on :&lt;/P&gt;
&lt;P&gt;SAS 9.4 / Viya 3.5&lt;BR /&gt;SAS/STAT 15.2 User's Guide&lt;BR /&gt;The TRANSREG Procedure&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_transreg_details02.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_transreg_details02.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the section that starts with this :&lt;/P&gt;
&lt;P&gt;The next example shows how to find a Box-Cox transformation without an independent variable. This seeks to normalize the univariate histogram. This example generates 500 random observations from a lognormal distribution. In addition, a constant variable z is created that is all zero. This is because PROC TRANSREG requires some independent variable to be specified, even if it is constant. Two options are specified in the PROC TRANSREG statement. MAXITER=0 is specified because the Box-Cox transformation is performed before any iterations are begun. No iterations are needed since no other work is required. The NOZEROCONSTANT a-option (which can be abbreviated NOZ) is specified so that PROC TRANSREG does not print any warnings when it encounters the constant independent variable. The MODEL statement asks for a Box-Cox transformation of y and an IDENTITY transformation (which does nothing) of the constant variable z. Finally, PROC UNIVARIATE is run to show a histogram of the original variable y, and the Box-Cox transformation, Ty. The following statements fit the univariate Box-Cox model and produce Figure 18:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 06 Nov 2021 20:39:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778946#M38197</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-11-06T20:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778954#M38199</link>
      <description>&lt;P&gt;I wrote that example. Sorry if you were confused. As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;said, use your own data not my sample data. Often times in examples, SAS developers use real data. Sometimes, as I did this time, it is convenient to make artificial and deliberately contrived data that clearly show what the analysis is doing. I don't recall how many years ago I added this capability to TRANSREG, but it is good to hear that someone wants to use it.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 01:41:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778954#M38199</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2021-11-07T01:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778955#M38200</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;I appreciate the help! However, I ran the code and got the error below:&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;ERROR: The transformation identify is not valid.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: The data set WANT may be incomplete. When this step was stopped there were 0 observations and 0 variables.&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 07 Nov 2021 02:19:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778955#M38200</guid>
      <dc:creator>jmguzman</dc:creator>
      <dc:date>2021-11-07T02:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778956#M38201</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&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;No worries at all -- I'm glad this code exists. I can't seem to figure out how to run the PROC&amp;nbsp;&lt;SPAN&gt;TRANSREG "Univariate Box-Cox. Does the code below look correct? I keep getting an error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;proc transreg data=olddataset maxiter=0 nozeroconstant;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;model boxcox(myvariable) = identify(z);&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;output out=.want;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 02:29:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778956#M38201</guid>
      <dc:creator>jmguzman</dc:creator>
      <dc:date>2021-11-07T02:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778957#M38202</link>
      <description>&lt;P&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>Sun, 07 Nov 2021 03:07:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778957#M38202</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-07T03:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778958#M38203</link>
      <description>&lt;P&gt;IDENTITY not IDENTIFY.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 03:16:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778958#M38203</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2021-11-07T03:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778960#M38204</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great catch! Now I get the error below. I think it's because of missing values? What can I do to exclude missing values?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;ERROR: 114 invalid values were encountered while attempting to transform variable myvariable.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: There were 239 observations read from the data set olddataset.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: The data set WANT may be incomplete. When this step was stopped there were 0 observations and 8 variables.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Data set WANT was not replaced because this step was stopped.&lt;/DIV&gt;</description>
      <pubDate>Sun, 07 Nov 2021 03:22:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778960#M38204</guid>
      <dc:creator>jmguzman</dc:creator>
      <dc:date>2021-11-07T03:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778961#M38205</link>
      <description>&lt;P&gt;Do you have negative values or more generally nonpositive? See PARAMETER=.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/statug/15.2/statug_transreg_syntax05.htm#statug.transreg.trgparopt" target="_blank"&gt;https://documentation.sas.com/doc/en/statug/15.2/statug_transreg_syntax05.htm#statug.transreg.trgparopt&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also see NOMISS.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/statug/15.2/statug_transreg_syntax05.htm#statug.transreg.trgnomopt" target="_blank"&gt;https://documentation.sas.com/doc/en/statug/15.2/statug_transreg_syntax05.htm#statug.transreg.trgnomopt&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 03:34:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778961#M38205</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2021-11-07T03:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778964#M38206</link>
      <description>&lt;P&gt;There are some things you need to understand about TRANSREG. I designed it for linear models with nonlinear (sometimes iteratively derived) transformations. However, I later made it do other things that seemed important that no one else was doing. Hence, I added BOXCOX. Univariate BOXCOX was even more of a stretch, but someone needed to do it, so I made it work (albeit with a somewhat clunky specification). Similar to BOXCOX, I added smoothing splines even though they did not fit well with the rest of the procedure. Decades ago, the old sasware ballot had getting the smoothing splines from GPLOT into an output data set. I knew GPLOT would never do it, so I put it in TRANSREG. The documentation has lots of details that can help you understand what it does. In some ways it is like a Swiss Army knife—lots of functionality but not always maximally elegant for a specific tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 03:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778964#M38206</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2021-11-07T03:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778965#M38207</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&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;Thank you for trailblazing! I'll take a look at the links you provided and read through the documentation to help me troubleshoot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great night!&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 04:29:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778965#M38207</guid>
      <dc:creator>jmguzman</dc:creator>
      <dc:date>2021-11-07T04:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778973#M38209</link>
      <description>&lt;P&gt;There are several papers about the univariate Box-Cox transformation. See&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.lexjansen.com/nesug/nesug04/an/an12.pdf" target="_self"&gt;Coleman, 2004&lt;/A&gt;, "A Fast, High-Precision Implementation of the Univariate One-Parameter Box-Cox&lt;BR /&gt;Transformation Using the Golden Section Search in SAS/IML", NESUG proceedings&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings12/430-2012.pdf" target="_self"&gt;LaLonde, 2012&lt;/A&gt;, "Transforming Variables for Normality and Linearity–When, How, Why and Why Not's", SAS Global Forum proceedings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;KSharp: You have asked me to write about the Box-Cox transformation several times.&amp;nbsp;What is it you find confusing? What do you want me to say about this topic?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 10:43:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778973#M38209</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-11-07T10:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778976#M38210</link>
      <description>Rick,&lt;BR /&gt;Sorry. I don't remember "asked me to write about the Box-Cox transformation several times."&lt;BR /&gt;Actually , I don't need Box-Cox in my real work . I recall you wrote a blog about Fisher transformation by  arctanh(r) .&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2017/09/20/fishers-transformation-correlation.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2017/09/20/fishers-transformation-correlation.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Therefore, I think you know something about this topic .</description>
      <pubDate>Sun, 07 Nov 2021 11:16:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778976#M38210</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-07T11:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778978#M38211</link>
      <description>&lt;P&gt;Yes, and in a comment to that article you wrote (September 27, 2017)&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Rick,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Can you write a blog about Box-Cox Transformation?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;So, I am asking you what you want to know that is not explained in the TRANSREG doc or in the papers that I've cited?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 11:26:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778978#M38211</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-11-07T11:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Univariate Box-Cox Transformation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778980#M38212</link>
      <description>Rick,&lt;BR /&gt;HuHu . That is more than four years ago , you still remember that ?&lt;BR /&gt;Impressive !!!</description>
      <pubDate>Sun, 07 Nov 2021 11:44:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Univariate-Box-Cox-Transformation/m-p/778980#M38212</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-07T11:44:09Z</dc:date>
    </item>
  </channel>
</rss>

