<?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: Proc gplot versus Proc sgplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280138#M9955</link>
    <description>could you please let me know the error you are getting with proc gplot when you are using it.</description>
    <pubDate>Sat, 25 Jun 2016 13:23:23 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2016-06-25T13:23:23Z</dc:date>
    <item>
      <title>Proc gplot versus Proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280135#M9954</link>
      <description>&lt;P&gt;I am following a project in a SAS book which has the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;symbol1 interpol=join height=10pt value=none&lt;BR /&gt;line=1 width=2 cv = _style_;&lt;BR /&gt;axis1 style=1 width=1 minor=none;&lt;BR /&gt;axis2 style=1 width=1 minor=none;&lt;BR /&gt;title;&lt;BR /&gt;footnote;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc gplot data = GraphPDC(where=(MemberID in( 'M0000106320012800'&lt;BR /&gt;,'M0000128390014000')))&lt;BR /&gt;nocache;&lt;BR /&gt;plot RxAdherent * Date/vaxis=axis1 haxis=axis2 frame;&lt;BR /&gt;by MemberID NDC;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am new to SAS and this code should be for gplot. &amp;nbsp;I am using SAS University Edition and the code above will fail with errors. &amp;nbsp;What is the code equivalent of the above for SAS University Edition with sgplot?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2016 12:30:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280135#M9954</guid>
      <dc:creator>crimbo</dc:creator>
      <dc:date>2016-06-25T12:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc gplot versus Proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280138#M9955</link>
      <description>could you please let me know the error you are getting with proc gplot when you are using it.</description>
      <pubDate>Sat, 25 Jun 2016 13:23:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280138#M9955</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2016-06-25T13:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc gplot versus Proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280139#M9956</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12151"&gt;@Jagadishkatam﻿&lt;/a&gt;&amp;nbsp;SAS UE does not include a SAS/Graph license.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2016 13:39:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280139#M9956</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-25T13:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc gplot versus Proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280140#M9957</link>
      <description>&lt;P&gt;This should get you started. &amp;nbsp;You cam customize your plot using the axis statements within the proc please review the documentation and many samples here :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#p073bl97jzadkmn15lhq58yiy2uh.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#p073bl97jzadkmn15lhq58yiy2uh.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#n06d3rt7nhhqq4n11xffmms8oj3z.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#n06d3rt7nhhqq4n11xffmms8oj3z.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grsggs/64979/HTML/default/viewer.htm#titlepage.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grsggs/64979/HTML/default/viewer.htm#titlepage.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc SGPLOT data=graphPDC;
Where;*add your where clause here
By memberid NDC;
Series X=Date y=rxadherent;
Run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 25 Jun 2016 13:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280140#M9957</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-25T13:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc gplot versus Proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280426#M9959</link>
      <description>&lt;P&gt;Thank you Reeza&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 14:09:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-gplot-versus-Proc-sgplot/m-p/280426#M9959</guid>
      <dc:creator>crimbo</dc:creator>
      <dc:date>2016-06-27T14:09:47Z</dc:date>
    </item>
  </channel>
</rss>

