<?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 sgpanel define min and max values for x-axis in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533694#M146350</link>
    <description>&lt;P&gt;Wonderful! Worked out.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPanel13.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26951i6D1753CA9006753C/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPanel13.png" alt="SGPanel13.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Feb 2019 19:15:10 GMT</pubDate>
    <dc:creator>Cruise</dc:creator>
    <dc:date>2019-02-07T19:15:10Z</dc:date>
    <item>
      <title>proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533214#M146170</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help defining min value for x axis be 1 and max be 12 on this plot work?&lt;/P&gt;
&lt;P&gt;Seems easy but i couldn't find any solution yet except using min=1 and max=12 with no success.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have; 
input N_MONTH_ENROLLED	WGT_DX	MEAN_DAYS;
cards;
1	1	17.2
1	2	5.8
1	3	14.6
1	4	126.0
1	6	6.9
1	99	19.2
2	1	21.4
2	2	39.5
2	3	15.9
2	4	76.6
2	6	1.4
2	99	15.7
3	1	28.1
3	2	3.6
3	3	12.7
3	4	0.0
3	5	0.0
3	6	5.8
3	99	16.8
4	1	19.6
4	2	55.3
4	3	10.6
4	4	28.2
4	5	0.0
4	6	6.9
4	99	19.7
5	1	15.4
5	2	8.4
5	3	7.1
5	4	11.7
5	5	2.3
5	6	2.6
5	99	18.1
6	1	18.0
6	2	41.5
6	3	11.0
6	4	27.4
6	5	0.3
6	6	0.7
6	99	16.5
7	1	14.0
7	2	0.0
7	3	7.9
7	4	0.1
7	5	0.0
7	6	0.9
7	99	9.6
8	1	9.1
8	2	0.0
8	3	4.6
8	4	13.2
8	5	3.5
8	6	3.2
8	99	11.0
9	1	9.9
9	2	1.4
9	3	3.9
9	4	4.2
9	5	0.0
9	6	0.8
9	99	6.0
10	1	7.3
10	2	5.4
10	3	6.0
10	4	1.1
10	5	0.0
10	6	0.8
10	99	7.2
11	1	6.8
11	2	0.1
11	3	2.8
11	4	3.4
11	5	0.3
11	6	1.8
11	99	5.4
12	1	1.3
12	2	0.2
12	3	0.4
12	4	0.3
12	5	0.0
12	6	0.1
12	99	1.4
;

proc print; run; 

ods graphics / height=300px width=1200px;
TITLE "hello";
proc sgpanel data=have;
panelby wgt_dx/onepanel novarname ROWS=1 ;
series x=N_MONTH_ENROLLED  y=MEAN_DAYS/ markerattrs=(size=3px);
colaxis label='hi' MIN=1 fitpolicy=thin valuesformat=best4.0;
rowaxis label='hirow' grid; 
TITLE "MEAN DIFFERENCE IN DAYS BY NUMBER OF MONTH WITH MEDICAID INSURANCE STRATIFIED BY DIAGNOSIS GROUPS";
format WGT_DX WGT_DX.; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Feb 2019 13:27:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533214#M146170</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-02-06T13:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533222#M146174</link>
      <description>&lt;P&gt;Have you tried putting an Xaxis or Yaxis statement in the proc?&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;sgpanel&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;have&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  panelby wgt_dx&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;onepanel novarname ROWS&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  series x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;N_MONTH_ENROLLED  y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;MEAN_DAYS&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; markerattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;size&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;3&lt;/SPAN&gt;px&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  colaxis &lt;SPAN class="token function"&gt;label&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'hi'&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;MIN&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; fitpolicy&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;thin valuesformat&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;best4&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  rowaxis &lt;SPAN class="token function"&gt;label&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'hirow'&lt;/SPAN&gt; grid&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;BR /&gt;  xaxis min=1 max=12;   /* Here */
&lt;SPAN class="token procnames"&gt;  format&lt;/SPAN&gt; WGT_DX WGT_DX&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; 
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For instance&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 13:52:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533222#M146174</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-06T13:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533226#M146176</link>
      <description>Hi. This gave me an error:&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Feb 2019 13:57:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533226#M146176</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-02-06T13:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533231#M146179</link>
      <description>&lt;P&gt;Oh, yes, sorry, doesn't work with sgpanel.&amp;nbsp; Looking at a previous post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-y-axis-with-multiple-scales/td-p/425758" target="_blank"&gt;https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-y-axis-with-multiple-scales/td-p/425758&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You seem to have been over this before?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want full control over the each part of it, I would suggest moving to GTL.&amp;nbsp; Create a template with columns/rows and set each graph distinctly.&amp;nbsp; So with layout gridded you can set x/yaxis attributes individually for each graph, or default them.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/65377/HTML/default/viewer.htm#p1o5obcsv23eb6n1piz8gcsaxhxc.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatgraph/65377/HTML/default/viewer.htm#p1o5obcsv23eb6n1piz8gcsaxhxc.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 14:05:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533231#M146179</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-06T14:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533238#M146183</link>
      <description>&lt;P&gt;i tried this with no success, it works but cuts 12 from display and my range appears to be 1 thru 11 on the plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;colaxis label='N of months with Medicaid coverage' MIN=1 MAX=12 fitpolicy=thin valuesformat=best2.0 values=(1 to 12);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I will take a look at the GTL? i never tried before.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 14:13:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533238#M146183</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-02-06T14:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533240#M146185</link>
      <description>&lt;P&gt;Add tmplout= to your current sgpanel statement and direct it to a text file, that will give you the basis (all splots create GTL behind the scenes):&lt;/P&gt;
&lt;PRE class="  language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;sgpanel&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;have tmplout="c:/test.txt"&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;From that you can then manipulate it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 14:18:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533240#M146185</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-06T14:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533644#M146334</link>
      <description>&lt;P&gt;Add an option into colaxis.&lt;/P&gt;
&lt;PRE&gt;colaxis label='hi'  &lt;STRONG&gt;integer&lt;/STRONG&gt;  .....................&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Feb 2019 16:18:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533644#M146334</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-02-07T16:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533647#M146335</link>
      <description>&lt;PRE&gt;colaxis label='hi' values=(1 to 12 by 1);
&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Feb 2019 16:23:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533647#M146335</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-02-07T16:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533654#M146336</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi Ksharp, the problem remains even after specifying that in colaxis. Mt plot shows as I have 11 points but actually I have 12 months for each month from jan thru dec.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics / height=300px width=1250px;
TITLE "hello";
proc sgpanel data=have;
panelby wgt_dx/onepanel novarname ROWS=1 ;
series x=N_MONTH_ENROLLED  y=MEAN_DAYS / markerattrs=(size=3px);
colaxis label='N of months with Medicaid coverage' fitpolicy=thin valuesformat=best2.0 values=(1 to 12 by 1);
rowaxis label='Mean difference in days' grid; 
TITLE "title";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ksharp.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26947iBFE9C255EF1EA86E/image-size/large?v=v2&amp;amp;px=999" role="button" title="ksharp.png" alt="ksharp.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 16:57:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533654#M146336</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-02-07T16:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533676#M146343</link>
      <description>&lt;P&gt;Where did the decision to use a width of 1250 pixels come from?&lt;/P&gt;
&lt;P&gt;Perhaps just making the graphic area a little wider would do.&lt;/P&gt;
&lt;P&gt;Or set the font size smaller for the values using the labelattrs option such as labelattrs=(size=6pt)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 17:46:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533676#M146343</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-02-07T17:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533680#M146345</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was hoping to create a high-resolution image. tweaking with that would help show x-axis value without a cut 1 thru 12? Has sizing of the plot an effect on the x-axis values?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 18:05:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533680#M146345</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-02-07T18:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533691#M146349</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/132289"&gt;@Cruise&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was hoping to create a high-resolution image. tweaking with that would help show x-axis value without a cut 1 thru 12? Has sizing of the plot an effect on the x-axis values?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Any of the graphs will be limited as to what they can display given a physical limitation of the graphic display area. Note that the first graph because the width is kind of narrow that the xaxis labels get thinned but the other doesn't (at least on my display).&lt;/P&gt;
&lt;PRE&gt;ods graphics/ height=2in width=2in;
proc sgplot data=sashelp.class;
   scatter x=height y=weight;
   xaxis values= (0 to 80 by 5);
run;

ods graphics/ height=2in width=4in;
proc sgplot data=sashelp.class;
   scatter x=height y=weight;
   xaxis values= (0 to 80 by 5);
run;&lt;/PRE&gt;
&lt;P&gt;So a wider display may alleviate the tick mark fit issue.&lt;/P&gt;
&lt;P&gt;Depending on exactly what you mean by "high resolution" that may be more a function of the specific ODS destination.&lt;/P&gt;
&lt;P&gt;For example the ODS HTML destination has an option IMAGE_DPI that specifies the "dots per inch" or resolution generate when the ODS GRAPHICS option NOIMAGEMAP, the default, is set.&lt;/P&gt;
&lt;P&gt;ODS PDF uses the DPI= option to control resolution.&lt;/P&gt;
&lt;P&gt;ODS RTF also uses IMAGE_DPI but the default is 200 instead of the 96 that HTML uses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using large values of dpi options may increase memory requirements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Vector graphic image files would behave differently in most respects for online viewing.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 19:04:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533691#M146349</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-02-07T19:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel define min and max values for x-axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533694#M146350</link>
      <description>&lt;P&gt;Wonderful! Worked out.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPanel13.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26951i6D1753CA9006753C/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPanel13.png" alt="SGPanel13.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 19:15:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sgpanel-define-min-and-max-values-for-x-axis/m-p/533694#M146350</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-02-07T19:15:10Z</dc:date>
    </item>
  </channel>
</rss>

