<?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: How to prevent scatter plot axis labels from being cut off in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452254#M20795</link>
    <description>&lt;P&gt;If you have SAS 9.4+ you can try the&amp;nbsp;&lt;SPAN&gt;SPLITCHAR or FITPOLICY option. I'm not sure what version it's&amp;nbsp;available in, it may be later versions.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;PS. If you post code that references a SASHELP data set we can run the code and test the options.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Documentation with some examples here:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1kiem0vt5yk8sn14amo4z5l76d2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1kiem0vt5yk8sn14amo4z5l76d2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Apr 2018 23:19:59 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-04-07T23:19:59Z</dc:date>
    <item>
      <title>How to prevent scatter plot axis labels from being cut off</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452224#M20793</link>
      <description>&lt;P&gt;Hi for the attached graph, my axis labels are cut off for the middle and third rows. how do I prevent this? thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the code I'm using:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgscatter data=mydata;
title "Spatial Gait Symmetry Parameters vs. SF-36 Functional Scores";
compare x=(PF VT GH)
		y=(speed_SymIdx_iqr cadenceSymIdx_iqr peakswing_SymIdx_iqr maxTC2_SymIdx_iqr)
		/loess=(nogroup) group=group
		markerattrs=(symbol=CircleFilled size=14)
   filledoutlinedmarkers 
   colormodel=(CX3288BD CX99D594 CXE6F598 CXFEE08B CXFC8D59 CXD53E4F);
   LABEL PF='Physical Function' VT='Vitality' GH='General Health'
    speed_SymIdx_iqr='Strike Speed(IQR)'
    peakswing_SymIdx_iqr='Peak Angular Velocity_IQR'
    maxTC2_SymIdx_iqr='2nd Max-Toe Clearance_IQR';
   format group group.;
   run; quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 19:02:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452224#M20793</guid>
      <dc:creator>kcodo</dc:creator>
      <dc:date>2018-04-07T19:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent scatter plot axis labels from being cut off</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452234#M20794</link>
      <description>&lt;P&gt;Unfortunately there is no option in SAS for controlling the Axis label. But you can&amp;nbsp;custom&amp;nbsp;code them using the Annotation which is little tricky.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check these:&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings11/277-2011.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings11/277-2011.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stats.idre.ucla.edu/sas/code/generating-multiline-axis-labels-in-sas-proc-sgplot/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/code/generating-multiline-axis-labels-in-sas-proc-sgplot/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 21:09:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452234#M20794</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-04-07T21:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent scatter plot axis labels from being cut off</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452254#M20795</link>
      <description>&lt;P&gt;If you have SAS 9.4+ you can try the&amp;nbsp;&lt;SPAN&gt;SPLITCHAR or FITPOLICY option. I'm not sure what version it's&amp;nbsp;available in, it may be later versions.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;PS. If you post code that references a SASHELP data set we can run the code and test the options.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Documentation with some examples here:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1kiem0vt5yk8sn14amo4z5l76d2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1kiem0vt5yk8sn14amo4z5l76d2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Apr 2018 23:19:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452254#M20795</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-07T23:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent scatter plot axis labels from being cut off</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452255#M20796</link>
      <description>I've moved this to the Graphics forum, so the SAS Graph staff can assist if required.</description>
      <pubDate>Sat, 07 Apr 2018 23:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-prevent-scatter-plot-axis-labels-from-being-cut-off/m-p/452255#M20796</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-07T23:20:58Z</dc:date>
    </item>
  </channel>
</rss>

