<?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 to make multiple plots (y*x1, y*x2, etc.) in SAS Enterprise Guide without repeating Tasks-&amp;gt;Graph-&amp;gt;Scatter Plot-&amp;gt;Data for each graph? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212108#M15886</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about BY statement ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 May 2015 06:45:40 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2015-05-09T06:45:40Z</dc:date>
    <item>
      <title>How to make multiple plots (y*x1, y*x2, etc.) in SAS Enterprise Guide without repeating Tasks-&gt;Graph-&gt;Scatter Plot-&gt;Data for each graph?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212104#M15882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 14pt;"&gt;Is there a shortcut in SAS EG that allows me to make multiple plots: y*x1, y*x2, y*x3, .... simultaneously without repeating the Tasks-&amp;gt;Graph-&amp;gt;Scatter Plot-&amp;gt;Data point and click routine for each plot?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14pt;"&gt;I'd like to select a chunk of predictor variables and assign them to the horizontal axis, then select the response variable and assign it to the vertical axis, but alas there's a limit of one variable per axis.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2015 21:41:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212104#M15882</guid>
      <dc:creator>RobF</dc:creator>
      <dc:date>2015-05-08T21:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to make multiple plots (y*x1, y*x2, etc.) in SAS Enterprise Guide without repeating Tasks-&gt;Graph-&gt;Scatter Plot-&gt;Data for each graph?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212105#M15883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could program it using proc sgplot?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=have;&lt;/P&gt;&lt;P&gt;scatter x=x y=y1;&lt;/P&gt;&lt;P&gt;scatter x=x y=y2;&lt;/P&gt;&lt;P&gt;scatter x=x y=y3;&lt;/P&gt;&lt;P&gt;run;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want multiple individual graphs look at SGSCATTER Procedures&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2015 21:57:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212105#M15883</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-05-08T21:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to make multiple plots (y*x1, y*x2, etc.) in SAS Enterprise Guide without repeating Tasks-&gt;Graph-&gt;Scatter Plot-&gt;Data for each graph?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212106#M15884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, I've used sgplot in the past but I have a lot of variables to plot &amp;amp; thought I'd leverage the work with some of the point &amp;amp; click tasks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2015 22:05:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212106#M15884</guid>
      <dc:creator>RobF</dc:creator>
      <dc:date>2015-05-08T22:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to make multiple plots (y*x1, y*x2, etc.) in SAS Enterprise Guide without repeating Tasks-&gt;Graph-&gt;Scatter Plot-&gt;Data for each graph?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212107#M15885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proc Gplot can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=plotdata;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; plot (y-variable list)*(x variable list);&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; plot y*(x variable list);&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>Fri, 08 May 2015 22:11:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212107#M15885</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-05-08T22:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to make multiple plots (y*x1, y*x2, etc.) in SAS Enterprise Guide without repeating Tasks-&gt;Graph-&gt;Scatter Plot-&gt;Data for each graph?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212108#M15886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about BY statement ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 May 2015 06:45:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212108#M15886</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-05-09T06:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to make multiple plots (y*x1, y*x2, etc.) in SAS Enterprise Guide without repeating Tasks-&gt;Graph-&gt;Scatter Plot-&gt;Data for each graph?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212109#M15887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ballardw's proc gplot suggestion works fine - it looks like there aren't any options at the moment in SAS EG for a point and click version of this however.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 14:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-make-multiple-plots-y-x1-y-x2-etc-in-SAS-Enterprise-Guide/m-p/212109#M15887</guid>
      <dc:creator>RobF</dc:creator>
      <dc:date>2015-05-15T14:53:46Z</dc:date>
    </item>
  </channel>
</rss>

