<?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: Regression quadratic point of the maximum response in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-quadratic-point-of-the-maximum-response/m-p/332900#M17579</link>
    <description>&lt;P&gt;&lt;STRONG&gt;proc RSREG&lt;/STRONG&gt; is a specialized procedure for finding optimum response. Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc rsreg Data=Banzatto182;
by variedade;
model producao = adubacao / nocode;
ods output StationaryPoint=minimum;
run;

proc print data=minimum label; run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 15 Feb 2017 04:54:18 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2017-02-15T04:54:18Z</dc:date>
    <item>
      <title>Regression quadratic point of the maximum response</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-quadratic-point-of-the-maximum-response/m-p/332848#M17578</link>
      <description>&lt;P&gt;Hi, I need know how I discovery the point of the maximum response in this example of regression quadratic (&lt;SPAN&gt;contrast "quadratica variedade 2" Adubacao(variedade) 0 0 0 0 +1 -1 -1 +1;).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Doing the calculations I know I have a minimum point (y = 2,07 x = 163,33) but I don't know how insert in this program SAS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Banzatto182;&lt;BR /&gt;input variedade adubacao bloco producao tratamento;&lt;BR /&gt;adubacao2=adubacao*adubacao;&lt;BR /&gt;cards;&lt;BR /&gt;1 0 1 1.65 1&lt;BR /&gt;1 0 2 1.68 1&lt;BR /&gt;1 0 3 2.12 1&lt;BR /&gt;1 0 4 1.68 1&lt;BR /&gt;1 100 1 2.14 2&lt;BR /&gt;1 100 2 1.36 2&lt;BR /&gt;1 100 3 1.31 2&lt;BR /&gt;1 100 4 3.13 2&lt;BR /&gt;1 200 1 1.40 3&lt;BR /&gt;1 200 2 2.16 3&lt;BR /&gt;1 200 3 2.00 3&lt;BR /&gt;1 200 4 2.00 3&lt;BR /&gt;1 300 1 2.32 4&lt;BR /&gt;1 300 2 2.42 4&lt;BR /&gt;1 300 3 3.43 4&lt;BR /&gt;1 300 4 2.46 4&lt;BR /&gt;2 0 1 4.22 5&lt;BR /&gt;2 0 2 3.50 5&lt;BR /&gt;2 0 3 3.80 5&lt;BR /&gt;2 0 4 3.05 5&lt;BR /&gt;2 100 1 2.21 6&lt;BR /&gt;2 100 2 2.78 6&lt;BR /&gt;2 100 3 2.30 6&lt;BR /&gt;2 100 4 2.34 6&lt;BR /&gt;2 200 1 2.30 7&lt;BR /&gt;2 200 2 2.00 7&lt;BR /&gt;2 200 3 2.16 7&lt;BR /&gt;2 200 4 1.72 7&lt;BR /&gt;2 300 1 3.43 8&lt;BR /&gt;2 300 2 3.18 8&lt;BR /&gt;2 300 3 3.30 8&lt;BR /&gt;2 300 4 2.90 8&lt;BR /&gt;;&lt;BR /&gt;proc glm data=Banzatto182;&lt;BR /&gt;class tratamento;&lt;BR /&gt;model producao= tratamento/ss3;&lt;BR /&gt;output out=norma P=pred R=res;&lt;BR /&gt;means tratamento /hovtest=bartlett;&lt;BR /&gt;run;&lt;BR /&gt;proc glm data=Banzatto182;&lt;BR /&gt;class variedade adubacao bloco producao;&lt;BR /&gt;model producao=bloco variedade adubacao variedade*adubacao/ss3;&lt;BR /&gt;lsmeans variedade*adubacao/slice=variedade;&lt;BR /&gt;run;&lt;BR /&gt;proc glm data=Banzatto182;&lt;BR /&gt;class variedade adubacao bloco;&lt;BR /&gt;model producao = adubacao(variedade) bloco/ss3;&lt;BR /&gt;contrast "linear variedade 1" adubacao(variedade) -3 -1 +1 +3;&lt;BR /&gt;contrast "quadratica variedade 1" adubacao(variedade) +1 -1 -1 +1;&lt;BR /&gt;contrast "linear variedade 2" Adubacao(variedade) 0 0 0 0 -3 -1 +1 +3;&lt;BR /&gt;contrast "quadratica variedade 2" Adubacao(variedade) 0 0 0 0 +1 -1 -1 +1;&lt;BR /&gt;run;&lt;BR /&gt;proc sort;&lt;BR /&gt;by variedade;&lt;BR /&gt;proc glm;&lt;BR /&gt;by variedade;&lt;BR /&gt;model producao = adubacao/ss3;&lt;BR /&gt;run;&lt;BR /&gt;proc sort;&lt;BR /&gt;by variedade;&lt;BR /&gt;proc glm;&lt;BR /&gt;by variedade;&lt;BR /&gt;model producao = adubacao adubacao*adubacao/ss3;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2017 00:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-quadratic-point-of-the-maximum-response/m-p/332848#M17578</guid>
      <dc:creator>RenatoHerrig</dc:creator>
      <dc:date>2017-02-15T00:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Regression quadratic point of the maximum response</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-quadratic-point-of-the-maximum-response/m-p/332900#M17579</link>
      <description>&lt;P&gt;&lt;STRONG&gt;proc RSREG&lt;/STRONG&gt; is a specialized procedure for finding optimum response. Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc rsreg Data=Banzatto182;
by variedade;
model producao = adubacao / nocode;
ods output StationaryPoint=minimum;
run;

proc print data=minimum label; run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Feb 2017 04:54:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-quadratic-point-of-the-maximum-response/m-p/332900#M17579</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-02-15T04:54:18Z</dc:date>
    </item>
  </channel>
</rss>

