<?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: Sequential (Hierarchical) regression in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sequential-Hierarchical-regression/m-p/311816#M67495</link>
    <description>&lt;P&gt;I'm not sure whether&amp;nbsp;I understand you correctly, but to fit a sequential model you can use PROC REG and specify the &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_reg_syntax08.htm" target="_self"&gt;SEQB option on the MODEL statement&lt;/A&gt; to produce the sequence of parameter estimates as each variable is entered into thte model.&amp;nbsp;The variable order is determined by the order in which the variables are listed on the MODEL statement. For example, look at the SeqParmEst table in the output for the following example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=sashelp.class plots=none;&lt;BR /&gt;model weight = height age / ss1 seqb;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The SeqParmEst table follows. The last row is the final parameter estimates that are listed in the ParameterEstimates table.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Reg: Sequential Parameter Estimates" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="3" scope="colgroup"&gt;Sequential Parameter Estimates&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r b header" scope="col"&gt;Intercept&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Height&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Age&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;100.026316&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;-143.026918&lt;/TD&gt;
&lt;TD class="r data"&gt;3.899030&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;-141.223763&lt;/TD&gt;
&lt;TD class="r data"&gt;3.597027&lt;/TD&gt;
&lt;TD class="r data"&gt;1.278393&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 15 Nov 2016 18:39:02 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2016-11-15T18:39:02Z</dc:date>
    <item>
      <title>Sequential (Hierarchical) regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sequential-Hierarchical-regression/m-p/311687#M67438</link>
      <description>&lt;P&gt;I want to do a sequestial (not stepwise) regression using SAS EG and control the order in which the IV's are entred into the regression.&lt;/P&gt;&lt;P&gt;Geoff&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 14:22:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sequential-Hierarchical-regression/m-p/311687#M67438</guid>
      <dc:creator>Geoff1</dc:creator>
      <dc:date>2016-11-15T14:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Sequential (Hierarchical) regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sequential-Hierarchical-regression/m-p/311816#M67495</link>
      <description>&lt;P&gt;I'm not sure whether&amp;nbsp;I understand you correctly, but to fit a sequential model you can use PROC REG and specify the &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_reg_syntax08.htm" target="_self"&gt;SEQB option on the MODEL statement&lt;/A&gt; to produce the sequence of parameter estimates as each variable is entered into thte model.&amp;nbsp;The variable order is determined by the order in which the variables are listed on the MODEL statement. For example, look at the SeqParmEst table in the output for the following example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=sashelp.class plots=none;&lt;BR /&gt;model weight = height age / ss1 seqb;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The SeqParmEst table follows. The last row is the final parameter estimates that are listed in the ParameterEstimates table.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Reg: Sequential Parameter Estimates" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="3" scope="colgroup"&gt;Sequential Parameter Estimates&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r b header" scope="col"&gt;Intercept&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Height&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Age&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;100.026316&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;-143.026918&lt;/TD&gt;
&lt;TD class="r data"&gt;3.899030&lt;/TD&gt;
&lt;TD class="r data"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;-141.223763&lt;/TD&gt;
&lt;TD class="r data"&gt;3.597027&lt;/TD&gt;
&lt;TD class="r data"&gt;1.278393&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Nov 2016 18:39:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sequential-Hierarchical-regression/m-p/311816#M67495</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-11-15T18:39:02Z</dc:date>
    </item>
  </channel>
</rss>

