<?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 sgplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600643#M19045</link>
    <description>&lt;P&gt;Can you show us your code please?&lt;/P&gt;</description>
    <pubDate>Thu, 31 Oct 2019 09:01:44 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2019-10-31T09:01:44Z</dc:date>
    <item>
      <title>proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600642#M19044</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using proc sgplot to plot two time-series trends and I want to get rid of axis labels because it displays whatever name I have for 'y=......' for the first time-series as y-axis label.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone shed some light on this please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 08:55:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600642#M19044</guid>
      <dc:creator>sks521</dc:creator>
      <dc:date>2019-10-31T08:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600643#M19045</link>
      <description>&lt;P&gt;Can you show us your code please?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 09:01:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600643#M19045</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-10-31T09:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600644#M19046</link>
      <description>&lt;P&gt;Here you go. In this example, the first series I have has y=comparator so it will pick 'comparator' as y-axis label. while I want to label the y-axis as 'percentage'.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*Plotting quarterly asthma visits by age (comparing under 2 with 2-16 years) in Bradford only;
data control2;
input Quarter :$10.  Comparator  Intervention;
datalines
;
Jan-Mar12 0.10	0.22
Apr-Jun12 0.10	0.21
Jul-Sep12 0.15	0.42
Oct-Dec12 0.10	0.34
Jan-Mar13 0.05	0.29
Apr-Jun13 0.07	0.17
Jul-Sep13 0.10	0.36
Oct-Dec13 0.12	0.31
Jan-Mar14 0.09	0.22
Apr-Jun14 0.12	0.23
Jul-Sep14 0.11	0.24
Oct-Dec14 0.15	0.34
Jan-Mar15 0.10	0.21
Apr-Jun15 0.12	0.18
Jul-Sep15 0.10	0.33
Oct-Dec15 0.10	0.33
Jan-Mar16 0.08	0.16
Apr-Jun16 0.10	0.18
Jul-Sep16 0.11	0.28
Oct-Dec16 0.14	0.30
;
run;
* doing plots of the data by quarter;
PROC SGPLOT DATA = control2;

 SERIES X = Quarter Y = Comparator;
 series x=Quarter y=Intervention;
 TITLE 'Quarterly time-series of perentage of asthma visits in under 2 and 2-16 year olds, Bradford';
RUN; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 09:04:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600644#M19046</guid>
      <dc:creator>sks521</dc:creator>
      <dc:date>2019-10-31T09:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600647#M19047</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data control2;
input Quarter  $ 1-9  Comparator  Intervention;
datalines
;
Jan-Mar12 0.10 0.22
Apr-Jun12 0.10 0.21
Jul-Sep12 0.15 0.42
Oct-Dec12 0.10 0.34
Jan-Mar13 0.05 0.29
Apr-Jun13 0.07 0.17
Jul-Sep13 0.10 0.36
Oct-Dec13 0.12 0.31
Jan-Mar14 0.09 0.22
Apr-Jun14 0.12 0.23
Jul-Sep14 0.11 0.24
Oct-Dec14 0.15 0.34
Jan-Mar15 0.10 0.21
Apr-Jun15 0.12 0.18
Jul-Sep15 0.10 0.33
Oct-Dec15 0.10 0.33
Jan-Mar16 0.08 0.16
Apr-Jun16 0.10 0.18
Jul-Sep16 0.11 0.28
Oct-Dec16 0.14 0.30
;
run;
* doing plots of the data by quarter;
PROC SGPLOT DATA = control2;

 SERIES X = Quarter Y = Comparator;
 series x=Quarter y=Intervention;
 TITLE 'Quarterly time-series of perentage of asthma visits in under 2 and 2-16 year olds, Bradford';

 yaxis label='Percentage';
RUN; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Oct 2019 09:07:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600647#M19047</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-10-31T09:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600649#M19048</link>
      <description>&lt;P&gt;Ta.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 09:17:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot/m-p/600649#M19048</guid>
      <dc:creator>sks521</dc:creator>
      <dc:date>2019-10-31T09:17:36Z</dc:date>
    </item>
  </channel>
</rss>

