<?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 set label text size of axis in reg proc? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93666#M26559</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... here's one way to move axis labels closer to the axes (it's a bit of "trial-and-error" specifying the X value for the Y-axis label and Y value for the X-axis label) ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ps&amp;nbsp; looks as if you made your own comment the correct answer !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* make an annotate data set to add axis labels;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;data anno;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;xsys = '6'; ysys = '2'; x = 6; y = 100; angle = 90; text = "WEIGHT (LBS)";&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;output;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;xsys = '2'; ysys = '6'; x = 61.25; y = 3; angle = 0; text = "HEIGHT (IN)";&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;output;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* match to PROC REG plot ... specify blank labels to make room for annotate labels;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;axis1 order=40 to 160 by 20 minor=none label=(a=90 " ");&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;axis2 order=50 to 72.5 by 2.5 minor=none offset=(1,1) label=(" ");&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* add regression line;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;symbol1 color=red v=dot ci=blue i=rl h=3 l=3 width=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;filename gout 'z:\procgplot2.png';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;title h=6 'DATA PLOTTED WITH PROC GPLOT' ls=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gplot data=sashelp.class annotate=anno;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;plot weight * height / vaxis=axis1 haxis=axis2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10662iADA918A2A31174AA/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="procgplot2.png" title="procgplot2.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jun 2012 16:47:37 GMT</pubDate>
    <dc:creator>MikeZdeb</dc:creator>
    <dc:date>2012-06-28T16:47:37Z</dc:date>
    <item>
      <title>How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93663#M26556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am new in SAS 9.2. I want to modify label text size beside vertical axis and haxis? I am using code below but&amp;nbsp; it&amp;nbsp; does not create what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; title " ";&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; goptions hsize=6 vsize=4 ftext="arial" htext=2;&amp;nbsp; // htext does not change axis label text size&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; symbol color=red ci=blue width=2;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; proc reg data=TEXT.CSVGUTE noprint;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; var a b;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; model a=b;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; label a="city";&amp;nbsp; // city size&amp;nbsp; not changed&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; label b="rate";&amp;nbsp; // rate size not changed, and numbers beside scales also not change. They look like smallest size.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; plot a*b; // But statistics information (statistics at the right margin&amp;nbsp; DOES change. It is&amp;nbsp; htext=2&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I do not want regression equation to be displayed on top of figure. I can use / nostat to suppress it at the margin. How to hide that equation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2012 13:19:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93663#M26556</guid>
      <dc:creator>Dylan</dc:creator>
      <dc:date>2012-06-27T13:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93664#M26557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... you are correct, but you could always use GPLOT (and there's most likely a very nice looking answer using SGPLOT) ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;goptions reset=all hsize=6in vsize=4in ftext="calibri" &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;gunit=pct dev=png gsfname=gout;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;symbol1 color=red v=dot ci=blue h=3 width=2; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;filename gout 'z:\procreg.png';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;title 'DATA PLOTED WITH PROC REG' ls=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc reg data=sashelp.class noprint; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;var weight height;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;model weight = height;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;label &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;weight = "WEIGHT (LBS)"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;height = "HEIGHT (IN)"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* onde way to suppress the equation ... look at the LOG message;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;plot weight*height / nostat modelht=1e6;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* works with GPLOT;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;goptions htext=4.5;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* match to PROC REG plot;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;axis1 order=40 to 160 by 20 minor=none label=(a=90 "WEIGHT (LBS)");&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;axis2 order=50 to 72.5 by 2.5 minor=none offset=(1,1) label=("HEIGHT (IN)");&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* add regression line;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;symbol1 color=red v=dot ci=blue i=rl h=3 l=3 width=2; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;filename gout 'z:\procgplot.png';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;title h=6 'DATA PLOTTED WITH PROC GPLOT' ls=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gplot data=sashelp.class;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;plot weight * height / vaxis=axis1 haxis=axis2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11636i324B3F2B9184D769/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="procreg.png" title="procreg.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11637iD8908BABEF1956B8/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="procgplot.png" title="procgplot.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2012 18:32:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93664#M26557</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-06-27T18:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93665#M26558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MikeZdeb, Thanks so much for your kind and generous help.&amp;nbsp; Your answer is nice. I found it suppress the equation and stat at the margin. The trick lies in second gplot proc. Thanks a million. The only imperfection is that the distance from vaxis label to vaxis is a little large if I do not use gunit=pct ( I use default). &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 15:40:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93665#M26558</guid>
      <dc:creator>Dylan</dc:creator>
      <dc:date>2012-06-28T15:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93666#M26559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... here's one way to move axis labels closer to the axes (it's a bit of "trial-and-error" specifying the X value for the Y-axis label and Y value for the X-axis label) ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ps&amp;nbsp; looks as if you made your own comment the correct answer !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* make an annotate data set to add axis labels;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;data anno;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;xsys = '6'; ysys = '2'; x = 6; y = 100; angle = 90; text = "WEIGHT (LBS)";&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;output;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;xsys = '2'; ysys = '6'; x = 61.25; y = 3; angle = 0; text = "HEIGHT (IN)";&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;output;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* match to PROC REG plot ... specify blank labels to make room for annotate labels;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;axis1 order=40 to 160 by 20 minor=none label=(a=90 " ");&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;axis2 order=50 to 72.5 by 2.5 minor=none offset=(1,1) label=(" ");&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* add regression line;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;symbol1 color=red v=dot ci=blue i=rl h=3 l=3 width=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;filename gout 'z:\procgplot2.png';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;title h=6 'DATA PLOTTED WITH PROC GPLOT' ls=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gplot data=sashelp.class annotate=anno;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;plot weight * height / vaxis=axis1 haxis=axis2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10662iADA918A2A31174AA/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="procgplot2.png" title="procgplot2.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 16:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93666#M26559</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-06-28T16:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93667#M26560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MikeZdeb , Thanks so much again for your immediate reply. I am testing your code to modify the distance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 00:46:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93667#M26560</guid>
      <dc:creator>Dylan</dc:creator>
      <dc:date>2012-06-29T00:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93668#M26561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG class="font-color-meta"&gt;&lt;SPAN class="replyToName"&gt;Thanks a lot,&amp;nbsp; Is it possible to move the whole data area (including haxis and vaxis ) closer to the vaxis label&amp;nbsp; rather than using annotate method. I was trying Origin=(), but failed.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG class="font-color-meta"&gt;&lt;SPAN class="replyToName"&gt;Please look at gif. The distance from vaxis label&amp;nbsp; to vaxis is large. I mean to move vaxis and data area closer to "city output" without changing graphic size (&lt;/SPAN&gt;&lt;/STRONG&gt;hsize=6 vsize=4 ftext="arial" htext=2); Below is simplified code of your advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; goptions reset=all hsize=6 vsize=4 ftext="arial" htext=2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; symbol1 color=red v=plus ci=blue i=rl l=1 width=5;&lt;/P&gt;&lt;P&gt;title '&amp;nbsp; ';&lt;/P&gt;&lt;P&gt;&amp;nbsp; axis1 label=('Mean city') minor=none;&lt;/P&gt;&lt;P&gt;&amp;nbsp; axis2 label=(angle=90 "Mean output") minor=none;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc gplot data=TEXT.CSVGUTE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; plot&amp;nbsp; a*b / haxis=axis1 vaxis=axis2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10973iB7E345F4DE0AB7D5/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Snap1.gif" title="Snap1.gif" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 01:28:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93668#M26561</guid>
      <dc:creator>Dylan</dc:creator>
      <dc:date>2012-06-30T01:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93669#M26562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to post it as GRAPH forum .&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="active_link" href="https://communities.sas.com/community/support-communities/sas_graph_and_ods_graphics" title="https://communities.sas.com/community/support-communities/sas_graph_and_ods_graphics"&gt;https://communities.sas.com/community/support-communities/sas_graph_and_ods_graphics&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can use Windows accessories - paint tool .&amp;nbsp; That is easy . OR PhotoShop - my favorite .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2012 01:53:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93669#M26562</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-07-02T01:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to set label text size of axis in reg proc?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93670#M26563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... sorry for the delay here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's a question ... is the y-variable formatted?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you look the attached, the y-axis label is much further away from the y-axis values in GPLOT10 than in GPLOT3 and the only difference was the format used for the y-axis variable ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gplot data=sashelp.class;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;plot weight * height / vaxis=axis1 haxis=axis2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;format weight 10.;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10867i8AF108EF1093613D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="gplot10.png" title="gplot10.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10868i91C9DD89F403EA24/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="gplot3.png" title="gplot3.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 19:02:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-set-label-text-size-of-axis-in-reg-proc/m-p/93670#M26563</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-07-03T19:02:29Z</dc:date>
    </item>
  </channel>
</rss>

