<?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: Understanding output of PROC GAM in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34412#M1433</link>
    <description>Thank you for the timely response!&lt;BR /&gt;
&lt;BR /&gt;
I have understood the interpretation of Proc GAM graphical output.&lt;BR /&gt;
&lt;BR /&gt;
1) Generalized Additive Model (GAM) : Y = B0 + S(X) ; (This says the relationship between Y and X is unknown and S(X) is a function with unknown relationship)&lt;BR /&gt;
&lt;BR /&gt;
2) GAM separates out the linear and non-linear trend of the predictor variable to Y = B0 + B1(X) + F(X); (where B1(X) is the linear part and F(X) is the non-linear part)&lt;BR /&gt;
&lt;BR /&gt;
3) Estimates are computed separately for the linear part and the non-linear part&lt;BR /&gt;
&lt;BR /&gt;
The predictions from non-linear part (called as partial predictions) are plotted against the predictor variable in the figure. Thus the figure depicts the non-linearity part of the relationship between Y and X (if at all there is any). If there is no non-linearity no curve would be generated.&lt;BR /&gt;
&lt;BR /&gt;
Krishnan</description>
    <pubDate>Fri, 22 May 2009 13:52:09 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-05-22T13:52:09Z</dc:date>
    <item>
      <title>Understanding output of PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34408#M1429</link>
      <description>Dear friends,&lt;BR /&gt;
&lt;BR /&gt;
I am using Proc GAM on a panel dataset (with 3,00,000 obs) for exploratory data analysis. I wanted to understand what is effect of an independent variable on the dependent variable. After running the Proc GAM code, I got a graphical output with the independent variable on x-axis and the effect on y-axis. How do I interpret this output? &lt;BR /&gt;
&lt;B&gt;Code used:&lt;/B&gt; &lt;BR /&gt;
ODS HTML; &lt;BR /&gt;
ODS GRAPHICS ON; &lt;BR /&gt;
&lt;BR /&gt;
PROC GAM DATA = TMP1.DATASET PLOTS(CLM);&lt;BR /&gt;
MODEL Y = SPLINE (X);&lt;BR /&gt;
OUTPUT OUT=ESTIMATE P RESIDUAL UCLM LCLM;&lt;BR /&gt;
RUN;&lt;BR /&gt;
&lt;BR /&gt;
ODS GRAPHICS OFF; &lt;BR /&gt;
ODS HTML CLOSE;&lt;BR /&gt;
&lt;BR /&gt;
U can e-mail me,if more information is required. This is an urgent request.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Krishnan (krishnan.s@mu-sigma.com)&lt;BR /&gt;
Business Analyst&lt;BR /&gt;
Mu Sigma Inc., Bangalore</description>
      <pubDate>Wed, 20 May 2009 15:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34408#M1429</guid>
      <dc:creator>Krishnan</dc:creator>
      <dc:date>2009-05-20T15:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding output of PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34409#M1430</link>
      <description>Hi Krishnan,&lt;BR /&gt;
&lt;BR /&gt;
Did you get any p-values in your output?</description>
      <pubDate>Wed, 20 May 2009 16:18:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34409#M1430</guid>
      <dc:creator>statsplank</dc:creator>
      <dc:date>2009-05-20T16:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding output of PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34410#M1431</link>
      <description>Yes..I got p-values and all that stats. The only issue is to understand the graphical output of PROC GAM. What the graphical output conveys.</description>
      <pubDate>Wed, 20 May 2009 16:41:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34410#M1431</guid>
      <dc:creator>Krishnan</dc:creator>
      <dc:date>2009-05-20T16:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding output of PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34411#M1432</link>
      <description>I suspect your graphical output looks similar to those in &lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/statug/59654/HTML/default/statug_gam_sect027.htm"&gt;Example 36.1 Generalized Additive Model with Binary Data&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
There, I saw a paragraph that begins with "The plots show that the partial predictions corresponding to both Age and StartVert have a quadratic pattern, while NumVert has a more complicated but weaker pattern." You may consider describing the pattern you see in your plot in similar terms.</description>
      <pubDate>Wed, 20 May 2009 19:54:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34411#M1432</guid>
      <dc:creator>statsplank</dc:creator>
      <dc:date>2009-05-20T19:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding output of PROC GAM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34412#M1433</link>
      <description>Thank you for the timely response!&lt;BR /&gt;
&lt;BR /&gt;
I have understood the interpretation of Proc GAM graphical output.&lt;BR /&gt;
&lt;BR /&gt;
1) Generalized Additive Model (GAM) : Y = B0 + S(X) ; (This says the relationship between Y and X is unknown and S(X) is a function with unknown relationship)&lt;BR /&gt;
&lt;BR /&gt;
2) GAM separates out the linear and non-linear trend of the predictor variable to Y = B0 + B1(X) + F(X); (where B1(X) is the linear part and F(X) is the non-linear part)&lt;BR /&gt;
&lt;BR /&gt;
3) Estimates are computed separately for the linear part and the non-linear part&lt;BR /&gt;
&lt;BR /&gt;
The predictions from non-linear part (called as partial predictions) are plotted against the predictor variable in the figure. Thus the figure depicts the non-linearity part of the relationship between Y and X (if at all there is any). If there is no non-linearity no curve would be generated.&lt;BR /&gt;
&lt;BR /&gt;
Krishnan</description>
      <pubDate>Fri, 22 May 2009 13:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understanding-output-of-PROC-GAM/m-p/34412#M1433</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-22T13:52:09Z</dc:date>
    </item>
  </channel>
</rss>

