<?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: High R Square with non-significant in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531115#M145311</link>
    <description>&lt;P&gt;Attachments aren't supported at this time, you can paste your code into the editor box directly or embed pictures using photos. Do not attach your code as a picture though. &lt;BR /&gt;&lt;BR /&gt;You can write the equation from the parameter estimates table. You can also use a SCORE statement or PROC SCORE or PROC PLM to score new data with a developed model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18662"&gt;@samer_badri75&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options pageno=1 linesize=80;
goptions reset=all;
title "Multiple regression for shelf_life";
data  shelf_life;
input  Temp   RH    Days;
	datalines;

10	94	65
10	93	51
10	94	70
9	93	78


	;
	run;
* Print data set;
proc print data= shelf_life;
run;
* Plot y vs. x variables;
proc gplot data=shelf_life;
	plot Days*(Temp   RH  );
	symbol1 i=rl v=star c=black;
	run;
* Multiple regression analysis;
ods html;
ods graphics on;
proc reg data=shelf_life;
	* Specify regression model and request residual-residual plots;
	model Days = Temp RH  / clb stb partial tol selaction=RSquare;
	run;
	Plot r.*pred. r.*nqq.;
run;
quit;
proc reg data=shelf_life;
	* Specify regression model and request residual-residual plots;
	model Days = Temp / clb stb partial tol selaction=RSquare;
	run;
ods graphics off;
ods html close;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Greeting All&lt;/P&gt;
&lt;P&gt;I used multiple regression and I got high&amp;nbsp;R Square with non-significant. How I can write&amp;nbsp;the equation&lt;/P&gt;
&lt;P&gt;The code was attached under the name Shelf-life1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Samir&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Jan 2019 20:28:04 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-01-29T20:28:04Z</dc:date>
    <item>
      <title>High R Square with non-significant</title>
      <link>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531113#M145309</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options pageno=1 linesize=80;
goptions reset=all;
title "Multiple regression for shelf_life";
data  shelf_life;
input  Temp   RH    Days;
	datalines;

10	94	65
10	93	51
10	94	70
9	93	78


	;
	run;
* Print data set;
proc print data= shelf_life;
run;
* Plot y vs. x variables;
proc gplot data=shelf_life;
	plot Days*(Temp   RH  );
	symbol1 i=rl v=star c=black;
	run;
* Multiple regression analysis;
ods html;
ods graphics on;
proc reg data=shelf_life;
	* Specify regression model and request residual-residual plots;
	model Days = Temp RH  / clb stb partial tol selaction=RSquare;
	run;
	Plot r.*pred. r.*nqq.;
run;
quit;
proc reg data=shelf_life;
	* Specify regression model and request residual-residual plots;
	model Days = Temp / clb stb partial tol selaction=RSquare;
	run;
ods graphics off;
ods html close;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Greeting All&lt;/P&gt;&lt;P&gt;I used multiple regression and I got high&amp;nbsp;R Square with non-significant. How I can write&amp;nbsp;the equation&lt;/P&gt;&lt;P&gt;The code was attached under the name Shelf-life1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Samir&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 18:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531113#M145309</guid>
      <dc:creator>samer_badri75</dc:creator>
      <dc:date>2019-01-29T18:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: High R Square with non-significant</title>
      <link>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531115#M145311</link>
      <description>&lt;P&gt;Attachments aren't supported at this time, you can paste your code into the editor box directly or embed pictures using photos. Do not attach your code as a picture though. &lt;BR /&gt;&lt;BR /&gt;You can write the equation from the parameter estimates table. You can also use a SCORE statement or PROC SCORE or PROC PLM to score new data with a developed model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18662"&gt;@samer_badri75&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options pageno=1 linesize=80;
goptions reset=all;
title "Multiple regression for shelf_life";
data  shelf_life;
input  Temp   RH    Days;
	datalines;

10	94	65
10	93	51
10	94	70
9	93	78


	;
	run;
* Print data set;
proc print data= shelf_life;
run;
* Plot y vs. x variables;
proc gplot data=shelf_life;
	plot Days*(Temp   RH  );
	symbol1 i=rl v=star c=black;
	run;
* Multiple regression analysis;
ods html;
ods graphics on;
proc reg data=shelf_life;
	* Specify regression model and request residual-residual plots;
	model Days = Temp RH  / clb stb partial tol selaction=RSquare;
	run;
	Plot r.*pred. r.*nqq.;
run;
quit;
proc reg data=shelf_life;
	* Specify regression model and request residual-residual plots;
	model Days = Temp / clb stb partial tol selaction=RSquare;
	run;
ods graphics off;
ods html close;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Greeting All&lt;/P&gt;
&lt;P&gt;I used multiple regression and I got high&amp;nbsp;R Square with non-significant. How I can write&amp;nbsp;the equation&lt;/P&gt;
&lt;P&gt;The code was attached under the name Shelf-life1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Samir&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 20:28:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531115#M145311</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-29T20:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: High R Square with non-significant</title>
      <link>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531125#M145314</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;Many thanks for your quick response. I add the code.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 18:58:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531125#M145314</guid>
      <dc:creator>samer_badri75</dc:creator>
      <dc:date>2019-01-29T18:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: High R Square with non-significant</title>
      <link>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531164#M145331</link>
      <description>&lt;P&gt;I would suggest you don't refer to people as 'Sir' unless you know their gender.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code has warnings, you should fix those - check your log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your formula is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Y = 222 - 16 * temp&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18662"&gt;@samer_badri75&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Sir&lt;/P&gt;
&lt;P&gt;Many thanks for your quick response. I add the code.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 20:29:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531164#M145331</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-29T20:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: High R Square with non-significant</title>
      <link>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531167#M145334</link>
      <description>&lt;P&gt;Sorry for that&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 20:39:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/High-R-Square-with-non-significant/m-p/531167#M145334</guid>
      <dc:creator>samer_badri75</dc:creator>
      <dc:date>2019-01-29T20:39:36Z</dc:date>
    </item>
  </channel>
</rss>

