<?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: Equation from Proc transreg in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216099#M11723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you're right in your interpretation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jun 2015 11:30:17 GMT</pubDate>
    <dc:creator>plf515</dc:creator>
    <dc:date>2015-06-10T11:30:17Z</dc:date>
    <item>
      <title>Equation from Proc transreg</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216093#M11717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are you?&lt;/P&gt;&lt;P&gt;I'd like to ask if it's possible to write out the equation from the proc transreg below?&lt;/P&gt;&lt;P&gt;Can the regression coefficients below be written as y=6.87157+&lt;SPAN style="font-size: 13.3333330154419px;"&gt;3.65544male+...+0.47702score?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;and be interpreted as one unit increase in x will increase y by 0.53355?&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc transreg data=rtm solve test nomiss plots=all;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model spline(y/ nknots=9)=opscore(male) &lt;/P&gt;&lt;P&gt;&amp;nbsp; opscore(age18_19) opscore(age20_24) opscore(age25_34) opscore(age35_44) opscore(age45_54) &lt;/P&gt;&lt;P&gt;&amp;nbsp; spline(x/ nknots=9) identity(score) / cl detail;&lt;/P&gt;&lt;P&gt;&amp;nbsp; output out=trans predicted residuals mrc coefficients;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods graphics off;&lt;/P&gt;&lt;P&gt;proc print data=trans; where _TYPE_='M COEFFI'; run;&lt;/P&gt;&lt;P&gt;/*&lt;/P&gt;&lt;P&gt;obs&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _TYPE_&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _NAME_&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TIntercept&amp;nbsp;&amp;nbsp; Tmale&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tage18_19&amp;nbsp; Tage20_24&amp;nbsp;&amp;nbsp; Tage25_34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tage35_44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tage45_54&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tx&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tscore&lt;/P&gt;&lt;P&gt;1325&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; M COEFFI&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6.87157&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.65544&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6.04942&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5.01395&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4.95410&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5.90719&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.10483&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.53355&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.47702 .&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 May 2015 15:24:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216093#M11717</guid>
      <dc:creator>Miracle</dc:creator>
      <dc:date>2015-05-17T15:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Equation from Proc transreg</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216094#M11718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. That is how to read them (I am assuming each of the tage variables are coded 0 and 1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have actual age, I would recommend using that, instead of the categorical variables for age. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 10:51:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216094#M11718</guid>
      <dc:creator>plf515</dc:creator>
      <dc:date>2015-05-19T10:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Equation from Proc transreg</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216095#M11719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;Hi Peter.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;Thanks for your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;I tried what you suggested by fitting spline to the continuous age variable instead.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;I later examined the residuals of my spline regression but I'm not sure if the residual plot and the Q-Q plot indicate any severe heteroscedasticity and non-normality?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;Perhaps you could shed some light me on this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;Thank you very much.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;&lt;IMG __jive_id="10518" alt="residual plot.bmp" class="jive-image-thumbnail jive-image jiveImage" height="245" src="https://communities.sas.com/legacyfs/online/10518_residual plot.bmp" style="font-family: 'times new roman', times; font-size: 16px; float: left; width: 462px; height: 244.624664879357px;" width="462" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;&lt;IMG __jive_id="10519" alt="QQplot.bmp" class="jive-image-thumbnail jive-image" height="241" src="https://communities.sas.com/legacyfs/online/10519_QQplot.bmp" style="width: 459px; height: 241.644504748982px;" width="459" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 07:21:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216095#M11719</guid>
      <dc:creator>Miracle</dc:creator>
      <dc:date>2015-05-20T07:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Equation from Proc transreg</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216096#M11720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It does seem to exhibit some of each; whether that will be problematic is another question - I don't know of good tools for figuring out how great a violation relates to how problematic a regresssion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 10:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216096#M11720</guid>
      <dc:creator>plf515</dc:creator>
      <dc:date>2015-05-20T10:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Equation from Proc transreg</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216097#M11721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;Thanks Peter for your response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;I'll go and explore a bit more.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 01:05:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216097#M11721</guid>
      <dc:creator>Miracle</dc:creator>
      <dc:date>2015-05-22T01:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Equation from Proc transreg</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216098#M11722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;Hi Peter.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;How are you?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times; font-size: 12pt;"&gt;Let's not worry about the non-normality and heteroscedasticity for now.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'times new roman', times;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;Can I please ask you about my interpretation of the spline regression &lt;/SPAN&gt;&lt;SPAN style="font-size: 16px;"&gt;coefficients&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt; in the first post whether it is correct?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: 'times new roman', times;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: 'times new roman', times;"&gt;Thank you very much and have a good day.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 06:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216098#M11722</guid>
      <dc:creator>Miracle</dc:creator>
      <dc:date>2015-06-09T06:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Equation from Proc transreg</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216099#M11723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you're right in your interpretation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 11:30:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Equation-from-Proc-transreg/m-p/216099#M11723</guid>
      <dc:creator>plf515</dc:creator>
      <dc:date>2015-06-10T11:30:17Z</dc:date>
    </item>
  </channel>
</rss>

