<?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 How to run and set proc reg plot on University Edition? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-and-set-proc-reg-plot-on-University-Edition/m-p/469495#M120116</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I'm trying to produce the following settings of reg plot on University Edition:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=hw3c;
  model oxygen=age runtime runpulse maxpulse / r;
  plot r.*(age runtime runpulse maxpulse);
  plot r.*p.;
  plot npp.*r.;
  plot cookd.*obs.;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I know I can run the following code on UE to have all graphs, but the graphs do not have regression equation on top.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=hw3c plots= (all);
model oxygen=age runtime runpulse maxpulse / r;
run; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help will be appreciated !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jun 2018 02:45:43 GMT</pubDate>
    <dc:creator>lydiawawa</dc:creator>
    <dc:date>2018-06-12T02:45:43Z</dc:date>
    <item>
      <title>How to run and set proc reg plot on University Edition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-and-set-proc-reg-plot-on-University-Edition/m-p/469495#M120116</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I'm trying to produce the following settings of reg plot on University Edition:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=hw3c;
  model oxygen=age runtime runpulse maxpulse / r;
  plot r.*(age runtime runpulse maxpulse);
  plot r.*p.;
  plot npp.*r.;
  plot cookd.*obs.;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I know I can run the following code on UE to have all graphs, but the graphs do not have regression equation on top.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=hw3c plots= (all);
model oxygen=age runtime runpulse maxpulse / r;
run; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help will be appreciated !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jun 2018 02:45:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-and-set-proc-reg-plot-on-University-Edition/m-p/469495#M120116</guid>
      <dc:creator>lydiawawa</dc:creator>
      <dc:date>2018-06-12T02:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to run and set proc reg plot on University Edition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-and-set-proc-reg-plot-on-University-Edition/m-p/469505#M120121</link>
      <description>&lt;P&gt;Plot statements are no longer supported in PROC REG, in SAS UE or any similar SAS/STAT (14.3) version.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC SGPLOT can be used to create graphs, but it’s definitely a bit of work.&amp;nbsp;&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/30435"&gt;@lydiawawa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I'm trying to produce the following settings of reg plot on University Edition:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=hw3c;
  model oxygen=age runtime runpulse maxpulse / r;
  plot r.*(age runtime runpulse maxpulse);
  plot r.*p.;
  plot npp.*r.;
  plot cookd.*obs.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I know I can run the following code on UE to have all graphs, but the graphs do not have regression equation on top.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=hw3c plots= (all);
model oxygen=age runtime runpulse maxpulse / r;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help will be appreciated !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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, 12 Jun 2018 03:50:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-and-set-proc-reg-plot-on-University-Edition/m-p/469505#M120121</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-06-12T03:50:05Z</dc:date>
    </item>
  </channel>
</rss>

