<?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 SAS procedures for smoothing spline in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-procedures-for-smoothing-spline/m-p/208100#M11202</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know that there is couples of procedures can fit spline regression models such as PROC TRANSREG,&amp;nbsp; PROC GLIMMIX, PROC TPSPLINE and so on.&lt;/P&gt;&lt;P&gt;What is the different between them?&amp;nbsp; Could you please list other procedures?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, is there some procedures that can be used to reduce the number of variables in spline model?&amp;nbsp; For example,&amp;nbsp; I use Proc Transreg.&amp;nbsp; The model statement is MODEL IDENTITY(Y) = SPLINE(X1 X2 X3 X4 ... X10),&amp;nbsp; I try to remove all insignificant variables by some selection methods.&lt;/P&gt;&lt;P&gt;I did not find that the options such as Backward, Stepwise can be used for Transreg.&amp;nbsp; Is there any other procedures I can use for this purpose? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.el&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 02 May 2015 04:58:30 GMT</pubDate>
    <dc:creator>Frank_Zhao</dc:creator>
    <dc:date>2015-05-02T04:58:30Z</dc:date>
    <item>
      <title>SAS procedures for smoothing spline</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-procedures-for-smoothing-spline/m-p/208100#M11202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know that there is couples of procedures can fit spline regression models such as PROC TRANSREG,&amp;nbsp; PROC GLIMMIX, PROC TPSPLINE and so on.&lt;/P&gt;&lt;P&gt;What is the different between them?&amp;nbsp; Could you please list other procedures?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, is there some procedures that can be used to reduce the number of variables in spline model?&amp;nbsp; For example,&amp;nbsp; I use Proc Transreg.&amp;nbsp; The model statement is MODEL IDENTITY(Y) = SPLINE(X1 X2 X3 X4 ... X10),&amp;nbsp; I try to remove all insignificant variables by some selection methods.&lt;/P&gt;&lt;P&gt;I did not find that the options such as Backward, Stepwise can be used for Transreg.&amp;nbsp; Is there any other procedures I can use for this purpose? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.el&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 May 2015 04:58:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-procedures-for-smoothing-spline/m-p/208100#M11202</guid>
      <dc:creator>Frank_Zhao</dc:creator>
      <dc:date>2015-05-02T04:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAS procedures for smoothing spline</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-procedures-for-smoothing-spline/m-p/208101#M11203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a good place to get started for more information:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/rnd/app/stat/procedures/NonparametricRegression.html" title="http://support.sas.com/rnd/app/stat/procedures/NonparametricRegression.html"&gt;Nonparametric Regression&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And now with the EFFECT statement, you can get splines with several other procedures. But watch out, these splines would not necessarily be &lt;STRONG&gt;penalized&lt;/STRONG&gt; smoothing. That is, if you put a spline effect in the model statement in GLIMMIX, it would fit a spline, but there would be no shrinkage of the parameters towards zero. You can get splines in GLIMMIX with random statements that are penalized/smoothing. Check out the radial smoothing example in the User's Guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as variable selection involving splines, I suggest the GLMSELECT procedure. If you have four variables, x1, x2, x3, x4, with splines for the first two (as an example):&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;effect splx1=spline(x1);&lt;/P&gt;&lt;P&gt;effect splx2=spline(x2);&lt;/P&gt;&lt;P&gt;model y = splx1 splx2 x3 x4 / selection = ___________;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are many, MANY, options here, both for EFFECT and for selection. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 May 2015 15:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-procedures-for-smoothing-spline/m-p/208101#M11203</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-05-02T15:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS procedures for smoothing spline</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-procedures-for-smoothing-spline/m-p/208102#M11204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Dear Ivm, &lt;/P&gt;&lt;P&gt;Your suggestion is very helpful.&amp;nbsp; I will try later due to the exam season.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Have a great day&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 May 2015 17:49:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-procedures-for-smoothing-spline/m-p/208102#M11204</guid>
      <dc:creator>Frank_Zhao</dc:creator>
      <dc:date>2015-05-02T17:49:40Z</dc:date>
    </item>
  </channel>
</rss>

