<?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 How to reverse Yaxis in Highlow plot in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-reverse-Yaxis-in-Highlow-plot/m-p/865126#M341635</link>
    <description>&lt;P&gt;Is there any way to reverse y-axis order in highlow plot? Taking this example "Stock trend in IBM" in SAS (&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n19gxtzyuf79t3n16g5v26b73ckv.htm#p10zi9x7fax97wn121xzj332a73c" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n19gxtzyuf79t3n16g5v26b73ckv.htm#p10zi9x7fax97wn121xzj332a73c&lt;/A&gt;).&lt;/P&gt;
&lt;PRE&gt;title "Stock Trend for IBM";
proc sgplot data=sashelp.stocks
  (where=(date &amp;gt;= "01jan2005"d and stock = "IBM"));
  highlow y=date high=high low=low
   / close=close;
run;
title;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;Default is low to high (Jan2005 to Dec2005) from bottom to top. How to make Date in Y-axis reverse order?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Mar 2023 02:45:44 GMT</pubDate>
    <dc:creator>jsbyxws</dc:creator>
    <dc:date>2023-03-20T02:45:44Z</dc:date>
    <item>
      <title>How to reverse Yaxis in Highlow plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-reverse-Yaxis-in-Highlow-plot/m-p/865126#M341635</link>
      <description>&lt;P&gt;Is there any way to reverse y-axis order in highlow plot? Taking this example "Stock trend in IBM" in SAS (&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n19gxtzyuf79t3n16g5v26b73ckv.htm#p10zi9x7fax97wn121xzj332a73c" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n19gxtzyuf79t3n16g5v26b73ckv.htm#p10zi9x7fax97wn121xzj332a73c&lt;/A&gt;).&lt;/P&gt;
&lt;PRE&gt;title "Stock Trend for IBM";
proc sgplot data=sashelp.stocks
  (where=(date &amp;gt;= "01jan2005"d and stock = "IBM"));
  highlow y=date high=high low=low
   / close=close;
run;
title;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;Default is low to high (Jan2005 to Dec2005) from bottom to top. How to make Date in Y-axis reverse order?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 02:45:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-reverse-Yaxis-in-Highlow-plot/m-p/865126#M341635</guid>
      <dc:creator>jsbyxws</dc:creator>
      <dc:date>2023-03-20T02:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to reverse Yaxis in Highlow plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-reverse-Yaxis-in-Highlow-plot/m-p/865148#M341643</link>
      <description>&lt;P&gt;Simply add YAXIS REVERSE; statement. Axis appearance is controlled by the XAXIS and YAXIS statements.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title "Stock Trend for IBM yaxis reverse";
proc sgplot data=sashelp.stocks
  (where=(date &amp;gt;= "01jan2005"d and stock = "IBM"));
  highlow y=date high=high low=low
   / close=close;
   yaxis reverse;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 10:22:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-reverse-Yaxis-in-Highlow-plot/m-p/865148#M341643</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2023-03-20T10:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to reverse Yaxis in Highlow plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-reverse-Yaxis-in-Highlow-plot/m-p/865177#M341650</link>
      <description>&lt;P&gt;Great! It works. Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 12:25:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-reverse-Yaxis-in-Highlow-plot/m-p/865177#M341650</guid>
      <dc:creator>jsbyxws</dc:creator>
      <dc:date>2023-03-20T12:25:35Z</dc:date>
    </item>
  </channel>
</rss>

