<?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: Linear regression in SAS Enterprise Guide 7.1 in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284688#M19486</link>
    <description>&lt;P&gt;Then spend the first week learning SAS. There's two free e-courses available that teach intro to programming and statistics with SAS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/training/tutorial/index.html" target="_blank"&gt;http://support.sas.com/training/tutorial/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;See the bottom right hand corner for the links.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jul 2016 21:12:17 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-07-14T21:12:17Z</dc:date>
    <item>
      <title>Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284665#M19477</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to do an analysis with my data. I have 5 predictors variables (all of them independants and&amp;nbsp;continuous) and 6 dependant variables dichotomic (with 2 values :true or false) and i would like to analyse with a linear regression the relationship between 1 predictor and 1 dependant variable at a time. Is there a way to do that without doing 30 different analysis ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;RC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 20:11:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284665#M19477</guid>
      <dc:creator>Renee1</dc:creator>
      <dc:date>2016-07-14T20:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284669#M19478</link>
      <description>&lt;P&gt;You could write a macro function to do the regression on every pair via a loop. Better than copy/pasting the PROC REG (or other linear regression block) 30 times. You could also &lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_reg_sect028.htm" target="_self"&gt;output the results to a dataset&lt;/A&gt;. Then make it into whatever table you want.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 20:27:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284669#M19478</guid>
      <dc:creator>paulkaefer</dc:creator>
      <dc:date>2016-07-14T20:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284671#M19479</link>
      <description>If i'm not using the coding and that i click on analysis, how can i do that ? Is there an option ?</description>
      <pubDate>Thu, 14 Jul 2016 20:29:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284671#M19479</guid>
      <dc:creator>Renee1</dc:creator>
      <dc:date>2016-07-14T20:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284673#M19480</link>
      <description>&lt;P&gt;Well, a benefit of writing code would be to give you the power and control to something that doesn't have an explicit option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure how you can do this via the graphical interface.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 20:33:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284673#M19480</guid>
      <dc:creator>paulkaefer</dc:creator>
      <dc:date>2016-07-14T20:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284681#M19482</link>
      <description>&lt;P&gt;The GUI doesn't support automating multiple reports like this easily.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you absolutely don't want to code then here's a way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;transpose your data - there's a task for that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make the independent variable a single column and a new variable that indicates the variable.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Y Varname value&lt;/P&gt;
&lt;P&gt;1 indep1 20&lt;/P&gt;
&lt;P&gt;1 indep2 30&lt;/P&gt;
&lt;P&gt;1 indep3 40&lt;/P&gt;
&lt;P&gt;2 indep1 20&lt;/P&gt;
&lt;P&gt;2 indep2 30&lt;/P&gt;
&lt;P&gt;2 indep3 40&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then when you run the regression analysis you can put the Varname as your BY variable. Make sure to sort the data on the BY variable first before regression.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 20:55:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284681#M19482</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-07-14T20:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284684#M19483</link>
      <description>I have 4 weeks to learn this new language...and analyse a complete project and write a medical article. But I would like to have this "power and control" &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Thu, 14 Jul 2016 21:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284684#M19483</guid>
      <dc:creator>Renee1</dc:creator>
      <dc:date>2016-07-14T21:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284685#M19484</link>
      <description>Thanks you for your help !</description>
      <pubDate>Thu, 14 Jul 2016 21:04:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284685#M19484</guid>
      <dc:creator>Renee1</dc:creator>
      <dc:date>2016-07-14T21:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284687#M19485</link>
      <description>&lt;P&gt;Well the &lt;A href="https://support.sas.com/edu/viewmyelearn.html" target="_self"&gt;SAS online trainings&lt;/A&gt; are great, and interactive! You could finish one or two in a week, if you have the time!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope Reeza's suggestion helps, and good luck with the project and paper.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 21:10:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284687#M19485</guid>
      <dc:creator>paulkaefer</dc:creator>
      <dc:date>2016-07-14T21:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression in SAS Enterprise Guide 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284688#M19486</link>
      <description>&lt;P&gt;Then spend the first week learning SAS. There's two free e-courses available that teach intro to programming and statistics with SAS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/training/tutorial/index.html" target="_blank"&gt;http://support.sas.com/training/tutorial/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;See the bottom right hand corner for the links.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 21:12:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Linear-regression-in-SAS-Enterprise-Guide-7-1/m-p/284688#M19486</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-07-14T21:12:17Z</dc:date>
    </item>
  </channel>
</rss>

