<?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 Outlines in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433838#M14980</link>
    <description>&lt;P&gt;Thank you Warren and Reeza for the options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data = spline;&lt;BR /&gt;yaxis label = "Estimated probably of Vasoplegia within 24h in ICU";&lt;BR /&gt;xaxis label = "Induction SBP";&lt;BR /&gt;band x=Ind_dbp1 lower=l upper=u;&lt;BR /&gt;series x = ind_dbp1 y = u/ curvelabel = "Upper CI";&lt;BR /&gt;series x = ind_dbp1 y = l/ curvelabel = "Lower CI";&lt;BR /&gt;series x = ind_dbp1 y = p/curvelabel = "Predicted value";&lt;BR /&gt;where VP_v24Hr_vasone_02 = .;&lt;BR /&gt;x2axis display=noline;&lt;BR /&gt;y2axis display=noline;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also looked at the link Warren suggested. What I had in mind was more like the second animal figure, although the X and Y axes are not here too. I know that you do understand what I meant by the X2 and Y2 axes as there are no alternatives, but in the first figure on the link you have "Ratings for Automobiles manufactured in 1980" on the X2 axis. Thats one of the two lines I want to make disappear. Results of above code are included.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christos&lt;/P&gt;</description>
    <pubDate>Sat, 03 Feb 2018 19:55:14 GMT</pubDate>
    <dc:creator>ChristosK</dc:creator>
    <dc:date>2018-02-03T19:55:14Z</dc:date>
    <item>
      <title>proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433717#M14977</link>
      <description>&lt;P&gt;How do you print a graph in proc sgplot with the only outline being the lines of the X and Y axes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifically, I don't want a line where the Y2 na X2 yes would be.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 23:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433717#M14977</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2018-02-02T23:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433723#M14978</link>
      <description>&lt;P&gt;You can specify the customization for the X2AXIS and Y2AXIS and I believe Display=None will allow you to suppress the lines.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 23:54:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433723#M14978</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-02T23:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433736#M14979</link>
      <description>&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/08/04/basic-ods-graphics-axis-options/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2017/08/04/basic-ods-graphics-axis-options/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are some examples of controlling axes.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 00:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433736#M14979</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-02-03T00:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433838#M14980</link>
      <description>&lt;P&gt;Thank you Warren and Reeza for the options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data = spline;&lt;BR /&gt;yaxis label = "Estimated probably of Vasoplegia within 24h in ICU";&lt;BR /&gt;xaxis label = "Induction SBP";&lt;BR /&gt;band x=Ind_dbp1 lower=l upper=u;&lt;BR /&gt;series x = ind_dbp1 y = u/ curvelabel = "Upper CI";&lt;BR /&gt;series x = ind_dbp1 y = l/ curvelabel = "Lower CI";&lt;BR /&gt;series x = ind_dbp1 y = p/curvelabel = "Predicted value";&lt;BR /&gt;where VP_v24Hr_vasone_02 = .;&lt;BR /&gt;x2axis display=noline;&lt;BR /&gt;y2axis display=noline;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also looked at the link Warren suggested. What I had in mind was more like the second animal figure, although the X and Y axes are not here too. I know that you do understand what I meant by the X2 and Y2 axes as there are no alternatives, but in the first figure on the link you have "Ratings for Automobiles manufactured in 1980" on the X2 axis. Thats one of the two lines I want to make disappear. Results of above code are included.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christos&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 19:55:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433838#M14980</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2018-02-03T19:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433839#M14981</link>
      <description>&lt;P&gt;Thank you Warren and Reeza for the options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data = spline;&lt;BR /&gt;yaxis label = "Estimated probably of Vasoplegia within 24h in ICU";&lt;BR /&gt;xaxis label = "Induction SBP";&lt;BR /&gt;band x=Ind_dbp1 lower=l upper=u;&lt;BR /&gt;series x = ind_dbp1 y = u/ curvelabel = "Upper CI";&lt;BR /&gt;series x = ind_dbp1 y = l/ curvelabel = "Lower CI";&lt;BR /&gt;series x = ind_dbp1 y = p/curvelabel = "Predicted value";&lt;BR /&gt;where VP_v24Hr_vasone_02 = .;&lt;BR /&gt;x2axis display=noline;&lt;BR /&gt;y2axis display=noline;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also looked at the link Warren suggested. What I had in mind was more like the second animal figure, although the X and Y axes are not here too. I know that you do understand what I meant by the X2 and Y2 axes as there are no alternatives, but in the first figure on the link you have "Ratings for Automobiles manufactured in 1980" on the X2 axis. Thats one of the two lines I want to make disappear. Results of above code are included.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christos&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 19:55:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433839#M14981</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2018-02-03T19:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433846#M14982</link>
      <description>&lt;P&gt;Not sure if your problem is solved or if you're still looking to remove the additional lines. If so, the documentation has the answer &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;&lt;A href="http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p0wvmd88sz151ln1i1vx8l72b73c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p0wvmd88sz151ln1i1vx8l72b73c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 class="xis-argument"&gt;DISPLAY=ALL | NONE | (&lt;SPAN class="xis-userSuppliedValue"&gt;options&lt;/SPAN&gt;)&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P&gt;&lt;SPAN class="xis-shortDescription"&gt;specifies which features of the axis are displayed.&lt;/SPAN&gt; &lt;SPAN class="xis-paraSimpleFirst"&gt;ALL displays all of the features of the axis. NONE specifies that none of the features of the axis are displayed. You can also hide specific features. &lt;SPAN class="xis-userSuppliedValue"&gt;options&lt;/SPAN&gt; can be one or more of the following:&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV id="p0j9vo2p9208qpn130fy2qine1vfa" class="xis-argDescriptionPair"&gt;
&lt;H4 class="xis-argument"&gt;NOLABEL&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;hides the axis label&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="n1qd1ltv45t9qcn1c9fne6pychlfa" class="xis-argDescriptionPair"&gt;
&lt;H4 class="xis-argument"&gt;NOLINE&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;hides the axis line&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD rowspan="2" class="xis-summaryTip"&gt;Tips&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;This value hides the axis line, but has no effect on the graph border. To hide the border, specify NOBORDER in the PROC SGPLOT statement.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryText"&gt;This value has no effect on baselines. For plots that support a baseline, such as bar charts and needle plots, you might need to suppress the baseline. In the plot statement, use the BASELINEATTRS= option to set the line thickness to 0.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sat, 03 Feb 2018 20:24:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433846#M14982</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-03T20:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433847#M14983</link>
      <description>&lt;P&gt;proc sgplot data=sashelp.class noborder;&lt;BR /&gt; scatter y=height x=weight;&lt;BR /&gt; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this what you want?&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 20:25:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433847#M14983</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-02-03T20:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgplot Outlines</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433861#M14985</link>
      <description>&lt;P&gt;Thank you Reeza and Warren.&amp;nbsp;&lt;/P&gt;&lt;P&gt;noborder works perfectly.&lt;/P&gt;&lt;P&gt;The other pointers are intriguing as well. Trying to minimize the ink relative to the data points in the graphs.....and getting there!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christos&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 20:44:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgplot-Outlines/m-p/433861#M14985</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2018-02-03T20:44:19Z</dc:date>
    </item>
  </channel>
</rss>

