<?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 Code works in Base SAS but not in Guide in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69701#M6972</link>
    <description>symbol1 interpol=rcclm95 value=circle cv=red ci=pink co=blue;&lt;BR /&gt;
symbol2 interpol=rcclm95 value=square cv=green ci=yellow co=orange;&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=sashelp.class;&lt;BR /&gt;
plot height*weight=1 / regeqn;&lt;BR /&gt;
plot2 age*weight=2 / regeqn;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Why are the equations not displayed in Guide 4.2 but show up fine in Base SAS?</description>
    <pubDate>Fri, 19 Mar 2010 17:16:51 GMT</pubDate>
    <dc:creator>dhhunter</dc:creator>
    <dc:date>2010-03-19T17:16:51Z</dc:date>
    <item>
      <title>Code works in Base SAS but not in Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69701#M6972</link>
      <description>symbol1 interpol=rcclm95 value=circle cv=red ci=pink co=blue;&lt;BR /&gt;
symbol2 interpol=rcclm95 value=square cv=green ci=yellow co=orange;&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=sashelp.class;&lt;BR /&gt;
plot height*weight=1 / regeqn;&lt;BR /&gt;
plot2 age*weight=2 / regeqn;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Why are the equations not displayed in Guide 4.2 but show up fine in Base SAS?</description>
      <pubDate>Fri, 19 Mar 2010 17:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69701#M6972</guid>
      <dc:creator>dhhunter</dc:creator>
      <dc:date>2010-03-19T17:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Code works in Base SAS but not in Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69702#M6973</link>
      <description>Hi:&lt;BR /&gt;
  It is possible that the REGEQN option is not supported in the device that's used in the creation of EG output. When you go to the Tools--&amp;gt; Options menu, look for the Results Option in the navigation pane and click on the Graph results option. if the Graph results option for Graph Format is set to "ActiveX" or "ActiveX image", then try changing the value to GIF or JPEG and see whether you get the REGEQN to appear.&lt;BR /&gt;
&lt;BR /&gt;
  The path may be slightly different to change Graph options in 9.2. The bottom line is that if you search in support.sas.com using the search string:&lt;BR /&gt;
&lt;B&gt; REGEQN ActiveX&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
you will see a hit on a documentation topic entitled "Summary of ActiveX and Java Support for PROC GPLOT". You will see that REGEQN is not always supported using these drivers (which is the EG default for graph creation). This is a good topic to consult when you are using SAS/GRAPH and EG because some options that work with graphic types like PNG, GIF or JPEG do not always work with ActiveX and/or Java.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 19 Mar 2010 21:57:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69702#M6973</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-03-19T21:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Code works in Base SAS but not in Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69703#M6974</link>
      <description>Cynthia has it right.  A simple workaround would be to add this to the top of your code:&lt;BR /&gt;
&lt;BR /&gt;
options device=PNG;&lt;BR /&gt;
&lt;BR /&gt;
Chris</description>
      <pubDate>Sun, 21 Mar 2010 02:34:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69703#M6974</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2010-03-21T02:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Code works in Base SAS but not in Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69704#M6975</link>
      <description>Thanks, Chris. And I think you meant to type&lt;BR /&gt;
&lt;B&gt;g&lt;/B&gt;options device=PNG;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Sun, 21 Mar 2010 17:49:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69704#M6975</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-03-21T17:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Code works in Base SAS but not in Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69705#M6976</link>
      <description>Actually, the DEVICE option works as GOPTION or OPTION.  Try it!</description>
      <pubDate>Mon, 22 Mar 2010 12:07:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69705#M6976</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2010-03-22T12:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Code works in Base SAS but not in Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69706#M6977</link>
      <description>That is totally cool! I'd always used GOPTIONS method, but indeed, DEVICE= would work in either statement, OPTIONS or GOPTIONS.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Mon, 22 Mar 2010 17:45:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Code-works-in-Base-SAS-but-not-in-Guide/m-p/69706#M6977</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-03-22T17:45:30Z</dc:date>
    </item>
  </channel>
</rss>

