<?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: How can I do this type of regression? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78125#M22577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, PG&lt;/P&gt;&lt;P&gt;I believe a concrete dataset in somewhere, VIEW only contains the sas code ,you can't feed it into REG .&lt;/P&gt;&lt;P&gt;when you execute PROC REG ,sas will generate a dataset to feed it . You can't walk around it by using View.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Nov 2012 03:14:54 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2012-11-28T03:14:54Z</dc:date>
    <item>
      <title>How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78108#M22560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have several thousand observations.&amp;nbsp; I want a code for a regression that would work like a moving average; i need a regression for obs 1 through 200, then a regression for obs 2 through 201, then 3 through 202, etc etc.&amp;nbsp; Is this possible to do without making a seperate sample for each regression?&amp;nbsp; Any idea what the coding would look like?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 21:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78108#M22560</guid>
      <dc:creator>RazzleBayker</dc:creator>
      <dc:date>2012-11-22T21:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78109#M22561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if there is a more direct way, but you could always wrap the reg call in a macro.&amp;nbsp; E.g., given sashelp.class which has 19 records, the following would run regressions on records 1 thru 5, then 2 thru 6, etc, thru 15 thru 19:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro repeatreg (number,lastset);&lt;/P&gt;&lt;P&gt;&amp;nbsp; %do i=1 %to &amp;amp;lastset;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let j=%eval(&amp;amp;i.+&amp;amp;number.);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc reg data=sashelp.class (firstobs=&amp;amp;i obs=&amp;amp;j.);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; model age=height weight;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;%mend repeatreg;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%repeatreg(5,15)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 21:25:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78109#M22561</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-22T21:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78110#M22562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use by groups after classifying your observations into groups, you can use proc format to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sort data=sashelp.class; by sex;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc reg data=sashelp.class;&lt;/P&gt;&lt;P&gt;by sex;&lt;/P&gt;&lt;P&gt;model age=height weight;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 21:44:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78110#M22562</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-11-22T21:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78111#M22563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or use a view and POINT=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;data rCars(keep=grp engineSize horsepower) / view=rCars;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;do grp = 0 to nbCars-200;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do j = 1 + grp to 200 + grp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set sashelp.cars nobs=nbCars point=j;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;stop;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;proc reg data=rCars outest=eCars;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;by grp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;model horsePower = enginesize;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way you don't create any new version of your dataset and you can collect all the results in a single dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 21:55:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78111#M22563</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-11-22T21:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78112#M22564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can tell the Canadians today....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 22:42:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78112#M22564</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-11-22T22:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78113#M22565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I couldn't talk my wife into doing two thanksgivings this year.&amp;nbsp; Anyone have a spare turkey leg?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.&lt;A __default_attr="2746" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: I like your solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 22:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78113#M22565</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-22T22:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78114#M22566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also get rid of the random access (POINT=) and read the data only once, using arrays :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;%let regSize=200;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;data rCars(keep=grp engineSize horsepower) / view=rCars;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;array es{&amp;amp;regSize} _temporary_;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;array hp{&amp;amp;regSize} _temporary_;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;set sashelp.cars;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;st = 1 + mod(_n_-1, &amp;amp;regSize);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;es{st} = engineSize;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;hp{st} = horsePower;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;if _n_ &amp;gt;= &amp;amp;regSize then do;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grp = 1 + _n_ - &amp;amp;regSize;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do i = st+1 to &amp;amp;regSize, 1 to st;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; engineSize = es{i};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; horsePower = hp{i};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;proc reg data=rCars outest=eCars;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;by grp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;model horsePower = enginesize;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 01:51:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78114#M22566</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-11-23T01:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78115#M22567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ArthurT,&lt;/P&gt;&lt;P&gt;Actually I like your solution more than PG's . PG's code will generated lots of obs when it is a big data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 02:07:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78115#M22567</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-11-23T02:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78116#M22568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="645292" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://communities.sas.com/"&gt;&lt;/A&gt; A view doesn't generate any data. At least, it doesn't have to. - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 02:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78116#M22568</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-11-23T02:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78117#M22569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Art,&lt;/P&gt;&lt;P&gt;Sorry, no spare turkey leg from me. You can have something else, enjoy it! - Linlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 16:04:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78117#M22569</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2012-11-23T16:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78118#M22570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How long before the mead is ready for consumption?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 16:12:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78118#M22570</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-23T16:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78119#M22571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is wine from grapes with a little bit honey added. I am going to make mead(only use honey and water) in December.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 16:19:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78119#M22571</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2012-11-23T16:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78120#M22572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search using Google for "rolling window regression" in SAS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://www.sas-programming.com/2011/08/rolling-analysis-of-time-series.html"&gt;http://www.sas-programming.com/2011/08/rolling-analysis-of-time-series.html&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://www.nesug.org/proceedings/nesug07/sa/sa04.pdf"&gt;http://www.nesug.org/proceedings/nesug07/sa/sa04.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 18:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78120#M22572</guid>
      <dc:creator>1zmm</dc:creator>
      <dc:date>2012-11-23T18:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78121#M22573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PG,&lt;/P&gt;&lt;P&gt;Yeah, But when you implement PROC REG ,it will produce lots of obs in a dataset. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2012 05:24:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78121#M22573</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-11-26T05:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78122#M22574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There won"t be much data produced unless you include an OUTPUT statement (to get predicted values or residuals). The OUTEST=eCars option produces a single observation per regression. You can also request the NOPRINT option to suppress printed output. - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2012 16:42:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78122#M22574</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-11-26T16:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78123#M22575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. PG,&lt;/P&gt;&lt;P&gt; I do not think so.&lt;/P&gt;&lt;P&gt;when you implement REG ,&amp;nbsp; &lt;STRONG style="font-size: 12pt; font-family: calibri,verdana,arial,sans-serif;"&gt;data=rCars&amp;nbsp; &lt;/STRONG&gt;will generate a&amp;nbsp; concrete dataset even you cann't see it .&lt;/P&gt;&lt;P&gt;View only contains the sas code you wrote before, when sas use reg model ,it will also need a real dataset to feed REG. View can't do it , I guess so. Did you make a experiment for it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2012 02:37:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78123#M22575</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-11-27T02:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78124#M22576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tested both solutions that I proposed. I can't tell if a hidden dataset is created by executing the view or if some other kind of interprocess communication is used. It might depend on its size. - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2012 16:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78124#M22576</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-11-27T16:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78125#M22577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, PG&lt;/P&gt;&lt;P&gt;I believe a concrete dataset in somewhere, VIEW only contains the sas code ,you can't feed it into REG .&lt;/P&gt;&lt;P&gt;when you execute PROC REG ,sas will generate a dataset to feed it . You can't walk around it by using View.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 03:14:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78125#M22577</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-11-28T03:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can I do this type of regression?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78126#M22578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check section &lt;STRONG&gt;Performance Considerations&lt;/STRONG&gt; in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/lrcon/65287/HTML/default/viewer.htm#n07vq6hmss6f67n1vhnnn5cw0chh.htm"&gt;http://support.sas.com/documentation/cdl/en/lrcon/65287/HTML/default/viewer.htm#n07vq6hmss6f67n1vhnnn5cw0chh.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It states that when only sequential access is required, no actual dataset is created when reading a data step view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2012 16:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-do-this-type-of-regression/m-p/78126#M22578</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-12-11T16:13:18Z</dc:date>
    </item>
  </channel>
</rss>

