<?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 Independent variables in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Independent-variables/m-p/351159#M18403</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need your advice,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 3 groups in my research: Firms that founded on 1930 (FF - dummy variable), Firms that founded on 1970 (FNF - dummy variable), and other firms.&lt;/P&gt;&lt;P&gt;I also have the continous variables that describe the largest ownership in the relevant firm, FOWN for FF firm and FNFOWN&amp;nbsp;for FNF firms.&lt;/P&gt;&lt;P&gt;If I want to check the ownership impact on performance, should I run regression as:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;reg&lt;/STRONG&gt; data=sasuser.sasfile;&lt;/P&gt;&lt;P&gt;model performance = FOWN FNFOWN ;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or should I create a new variable named, for example, OWN, that reflect that largest owners in each firm but the code will be:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;reg&lt;/STRONG&gt; data=sasuser.sasfile;&lt;/P&gt;&lt;P&gt;model performance = OWN*FF OWN*FNF ; (I will create a new variable for each duplicated variables)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!!!!&lt;/P&gt;</description>
    <pubDate>Wed, 19 Apr 2017 06:23:08 GMT</pubDate>
    <dc:creator>yael</dc:creator>
    <dc:date>2017-04-19T06:23:08Z</dc:date>
    <item>
      <title>Independent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Independent-variables/m-p/351159#M18403</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need your advice,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 3 groups in my research: Firms that founded on 1930 (FF - dummy variable), Firms that founded on 1970 (FNF - dummy variable), and other firms.&lt;/P&gt;&lt;P&gt;I also have the continous variables that describe the largest ownership in the relevant firm, FOWN for FF firm and FNFOWN&amp;nbsp;for FNF firms.&lt;/P&gt;&lt;P&gt;If I want to check the ownership impact on performance, should I run regression as:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;reg&lt;/STRONG&gt; data=sasuser.sasfile;&lt;/P&gt;&lt;P&gt;model performance = FOWN FNFOWN ;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or should I create a new variable named, for example, OWN, that reflect that largest owners in each firm but the code will be:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;reg&lt;/STRONG&gt; data=sasuser.sasfile;&lt;/P&gt;&lt;P&gt;model performance = OWN*FF OWN*FNF ; (I will create a new variable for each duplicated variables)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!!!!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 06:23:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Independent-variables/m-p/351159#M18403</guid>
      <dc:creator>yael</dc:creator>
      <dc:date>2017-04-19T06:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Independent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Independent-variables/m-p/351161#M18404</link>
      <description>&lt;P&gt;I am assuming that your dummy variables are coded as 0/1 as PROC REG does not support a class statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would recommed your first choice. You can also specify multiple model statements like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=sasuser.sasfile;
    model performance = FOWN;
    model performance = FNFOWN;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Apr 2017 06:32:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Independent-variables/m-p/351161#M18404</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-04-19T06:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Independent variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Independent-variables/m-p/351162#M18405</link>
      <description>&lt;P&gt;Thanks for your answer&lt;/P&gt;&lt;P&gt;But my question is what is the difference between the two options I mentioned?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 06:37:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Independent-variables/m-p/351162#M18405</guid>
      <dc:creator>yael</dc:creator>
      <dc:date>2017-04-19T06:37:48Z</dc:date>
    </item>
  </channel>
</rss>

