<?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 proc sgpanel confused by log response axis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285138#M10089</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using SAS 9.4, this simple code displays&amp;nbsp;data erroneously. The bars are the wrong length, the reference lines at the wrong location.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note how on the second chart,&amp;nbsp;the second bar has a different length (but still wrong) and the reference line is placed&amp;nbsp;correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea how to fix this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data TEST;
  do PANEL=1 to 3;
   Y=1; X=    0.1; output; 
   Y=2; X=   10;   output; 
   Y=3; X=10000;   output; 
  end;
run;
ods graphics on / width=640px height=320px;
proc sgpanel data=TEST;
  panelby PANEL / novarname columns=3;
  hbar Y / response=X  groupdisplay=cluster stat=median ;
  colaxis label='Time (seconds)' min=0.01 type=log logbase=10 ;   
  refline   15/axis=X lineattrs=(pattern=shortdash color=darkred);
  refline  150/axis=X lineattrs=(pattern=shortdash color=green);
  refline 1500/axis=X lineattrs=(pattern=shortdash color=blue);
run;
proc sgpanel data=TEST;
  panelby PANEL / novarname columns=3;
  hbar Y / response=X  groupdisplay=cluster stat=median ;
  colaxis label='Time (seconds)' min=0.01 type=log logbase=10 max=15;   
  refline 15/axis=X lineattrs=(pattern=shortdash color=darkred);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="SGPanel40.png" alt="SGPanel40.png" src="https://communities.sas.com/t5/image/serverpage/image-id/4110iF9A7AE2267334AD8/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="SGPanel41.png" alt="SGPanel41.png" src="https://communities.sas.com/t5/image/serverpage/image-id/4111i9144DA9550B3E2FA/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Jul 2016 02:18:03 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2016-07-18T02:18:03Z</dc:date>
    <item>
      <title>proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285138#M10089</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using SAS 9.4, this simple code displays&amp;nbsp;data erroneously. The bars are the wrong length, the reference lines at the wrong location.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note how on the second chart,&amp;nbsp;the second bar has a different length (but still wrong) and the reference line is placed&amp;nbsp;correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea how to fix this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data TEST;
  do PANEL=1 to 3;
   Y=1; X=    0.1; output; 
   Y=2; X=   10;   output; 
   Y=3; X=10000;   output; 
  end;
run;
ods graphics on / width=640px height=320px;
proc sgpanel data=TEST;
  panelby PANEL / novarname columns=3;
  hbar Y / response=X  groupdisplay=cluster stat=median ;
  colaxis label='Time (seconds)' min=0.01 type=log logbase=10 ;   
  refline   15/axis=X lineattrs=(pattern=shortdash color=darkred);
  refline  150/axis=X lineattrs=(pattern=shortdash color=green);
  refline 1500/axis=X lineattrs=(pattern=shortdash color=blue);
run;
proc sgpanel data=TEST;
  panelby PANEL / novarname columns=3;
  hbar Y / response=X  groupdisplay=cluster stat=median ;
  colaxis label='Time (seconds)' min=0.01 type=log logbase=10 max=15;   
  refline 15/axis=X lineattrs=(pattern=shortdash color=darkred);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="SGPanel40.png" alt="SGPanel40.png" src="https://communities.sas.com/t5/image/serverpage/image-id/4110iF9A7AE2267334AD8/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="SGPanel41.png" alt="SGPanel41.png" src="https://communities.sas.com/t5/image/serverpage/image-id/4111i9144DA9550B3E2FA/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 02:18:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285138#M10089</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-18T02:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285147#M10090</link>
      <description>&lt;P&gt;The procedure gets confused because it can't start the bar at zero on a log axis. Add the baseline=0.01 option to the hbar statement.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 02:48:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285147#M10090</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-07-18T02:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285148#M10091</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Is this expected behaviour? It seems pretty random to me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have no zeroes in my data, I specify the minimum value for the axis. And now&amp;nbsp;I also need to specify the baseline option.&lt;/P&gt;
&lt;P&gt;None of this should be necessary. Zeroes and negatives should&amp;nbsp;be discarded (with a message in the log) and the rest should be automatic.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 04:23:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285148#M10091</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-18T04:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285192#M10092</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ﻿&lt;/a&gt;said: None of this should be necessary. Zeroes and negatives should&amp;nbsp;be discarded (with a message in the log) and the &amp;nbsp; &amp;nbsp;rest should be automatic.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I disagree. As you know,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;log10(0.01)= -2,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;log10(0.001)= -3,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;log10(0.0001)= -4,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;lim as x--&amp;gt;0 log10(x)= -infinity&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Therefore a bar chart that includes baseline zero would have to be infinitely long. Where would you expect this "automatic" cutoff to occur?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The documentation states that the default baseline for a bar chart is zero, in accord with established graphical priciples. Therefore setting a baseline seems like a&amp;nbsp;reasonable thing to do.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;By the way, &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2012/04/25/bar-chart-with-log-response-axis/" target="_self"&gt;Sanjay discusses this issue in a blog post from 2012&lt;/A&gt;&amp;nbsp;and links to a discussion about why&amp;nbsp;bar charts with log axes are not a good idea. &amp;nbsp;In a follow-up post, Sanjay presents &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2012/05/03/graphs-with-log-axis/" target="_self"&gt;alternative visualizations that make more sense.&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 09:59:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285192#M10092</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-18T09:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285198#M10093</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS﻿&lt;/a&gt; Sanjay discusses a pretty absurd example* where the data is between 100 and 300, which of course doesn't need a log axis. Since my data spreads from 0.01 to 2000, a log axis is pertinent, and a bar chart happens to be the most appropriate way to show *this data*. Bad ideas are like trash: One man's trash is another man's treasure. It all depends.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I can post my graph if you want to give some input and prove me wrong, but I am pretty comfortable about this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for cutting off the axis, w&lt;SPAN&gt;here should the "automatic" cutoff to occur? &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SAS/GRAPH has no issue answering this question, &lt;/SPAN&gt;and does the&amp;nbsp;right thing in my opinion: it scales according to the data. When a log axis is used, keeping the baseline at zero is plain silly, and SG procedures should be smart, not silly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* This removes none of the value of Sanjay's ever instructive posts. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 23:04:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285198#M10093</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-18T23:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285200#M10094</link>
      <description>&lt;P&gt;In any case, the above is a matter of appreciation. There is no absolute right or wrong here, to each their own.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is totally wrong is for SAS to display erroneous charts.&lt;/P&gt;
&lt;P&gt;That is a no-no.&lt;/P&gt;
&lt;P&gt;If the baseline is zero, and if it won't adapt automatically for a log axis, no graph should be produced.&lt;/P&gt;
&lt;P&gt;Producing a fallacious&amp;nbsp;graph is absolutely unacceptable imho.&lt;/P&gt;
&lt;P&gt;The example I gave was obviously wrong, my real data not so.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So something must change: either the baseline is smarter, or the graph is not drawn.&lt;/P&gt;
&lt;P&gt;Drawing graphs at random is clearly a defective behaviour.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 10:51:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285200#M10094</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-18T10:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285201#M10095</link>
      <description>Mmm my post vanished.</description>
      <pubDate>Mon, 18 Jul 2016 11:03:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285201#M10095</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-18T11:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285202#M10096</link>
      <description>&lt;P&gt;Alright my 2nd post vanished. I won't type the whole thing again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bottom line: SAS should not, ever, under any circumstances draw an erroneous graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case, either the baseline doesn't stay at zero when it sees a log axis, or no graph is drawn. Drawing a fallacious graph for whatever reason is simply defective behaviour.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 11:15:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285202#M10096</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-18T11:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285227#M10097</link>
      <description>&lt;P&gt;I agree SAS should not display a wrong graph. &amp;nbsp;There are many notes in the log about the use of this log axis with "zero" in the data. &amp;nbsp;The log says it is reverting to "Linear" axis, but the graph is still showing a log axis and incorrect graph. Please report this issue to Tech Support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Separately, my posts about the "Log Axis for Bar Charts" is not dependent on the data. &amp;nbsp;This is generally considered a bad idea because the "length" of the bar is what gives the eye the cue for magnitude comparisons. &amp;nbsp;When the scale is non-linear, that "length" cue is distorted. &amp;nbsp;It is considered better to use other plots that do not provide such a cue when using log scale, as commented by John Munoz and others.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 13:37:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285227#M10097</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2016-07-18T13:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285401#M10107</link>
      <description>&lt;P&gt;1- About&amp;nbsp;SAS's behaviour:&lt;BR /&gt;&amp;gt;There are many notes in the log about the use of this log axis with "zero" in the data&lt;/P&gt;
&lt;P&gt;Yes there are. Like this:&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;NOTE: Log axis cannot support zero or negative values in the data range. The axis type will be changed to LINEAR.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Useless notes as 1) I don't have zero or negative values in my data and 2) the axis is not changed to linear.&lt;/P&gt;
&lt;P&gt;This whole log axis implementation area has room for&amp;nbsp;improvement. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2- About the graph:&lt;/P&gt;
&lt;P&gt;I know the bar lengths are misleading, but not much more than dot positions. On a log axis, a dot twice as far is not twice the value. That's life with log axes. I don't see how length is much worse than distance/position.&lt;/P&gt;
&lt;P&gt;The best way to deal with this scaling issue is to display minor grid lines when using log axes imho, and to use reference lines to highlight differences or thresholds.&lt;/P&gt;
&lt;P&gt;Bars are more&amp;nbsp;useful for me here&amp;nbsp;as they are grouped, show small differences well,&amp;nbsp;and dots would be more difficult to read with no appreciable benefit in meaningfulness.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3-I'll open a track for both the defective log message and the fallacious graph.&lt;/P&gt;
&lt;P&gt;I'd much prefer if you guys could pick the ball when this kind of issue is raised in these forums, as I often have many tracks open at any point in time, and SAS OZ must hate me, and I sometimes feel&amp;nbsp;that I'm working for SAS QA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 23:07:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285401#M10107</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-18T23:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/286385#M10152</link>
      <description>Moved the discussion about SAS support and exchanges in the communities to the Community Matters board.</description>
      <pubDate>Wed, 20 Jul 2016 21:49:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/286385#M10152</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2016-07-20T21:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel confused by log response axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285989#M10153</link>
      <description>&lt;P&gt;Fyi, here is an draft of a graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am working on the third edition of&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.amazon.com/High-Performance-SAS-Coding-Christian-Graffeuille/dp/1512397490" target="_blank"&gt;https://www.amazon.com/High-Performance-SAS-Coding-Christian-Graffeuille/dp/1512397490&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and&amp;nbsp;comparing different ways to "merge" data (SAS's implementation of "exists" in SQL is not the best btw) for different purposes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Gorgeous no? &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;IMG title="img0.png" alt="img0.png" src="https://communities.sas.com/t5/image/serverpage/image-id/4148i16E646FBDA4F1478/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2016 22:11:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-confused-by-log-response-axis/m-p/285989#M10153</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-07-20T22:11:56Z</dc:date>
    </item>
  </channel>
</rss>

