<?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 sg plot. How to change the position and text of a title into a figure legend. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/685198#M20482</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;footnote box=1   justify= Left   "Supplementary Figure 1: OR (95% CI) for composite estimate of Severe Vasoplegia over 24h (shaded), and at sampled times up to 24 hours";&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 19 Sep 2020 15:54:27 GMT</pubDate>
    <dc:creator>ChristosK</dc:creator>
    <dc:date>2020-09-19T15:54:27Z</dc:date>
    <item>
      <title>proc sg plot. How to change the position and text of a title into a figure legend.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/683471#M20463</link>
      <description>&lt;P&gt;Reviewer's Request: &amp;nbsp;&lt;SPAN&gt;"Figures. Please delete the title, instead add figure legends."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My code:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data =HEERDT.VP_Table2b2  nowall noborder ;
&lt;FONT color="#FF0000"&gt;Title "OR (95% CI) across Vasoplegia Severity, units=1 s.d." ;&lt;/FONT&gt;
styleattrs datacontrastcolors=(CX18577A CX30CC6E  ) ;
format Name $Namefmt.;
scatter x=sdOR y=Name / xerrorupper=sdUCL xerrorlower=sdLCL noerrorcaps markerattrs=(symbol=circlefilled size =5 )
group=Severity groupdisplay=cluster clusterwidth=0.6;
yaxis DISCRETEORDER= DATA reverse ;
xaxis display =(noticks  nolabel noline) VALUEATTRS=(Color=Black Family=Arial Size=8 Style=Normal Weight=Normal)type =log logbase =10 ;
yaxis display =(noticks nolabel noline) VALUEATTRS=(Color=Black Family=Arial Size=8 Style=Normal Weight=Normal)
valueshalign=left colorbands=odd colorbandsattrs=(transparency=0.7);
refline 1.0 / axis=x discretethickness=1 lineattrs=(color=cxd0e0f0);
  refline 'preNa' / axis=y discreteoffset=0.5 lineattrs=(color =Black pattern=34 thickness=1); 
  refline 'pRBC' / axis=y discreteoffset=0.5 lineattrs=(color =Black pattern=34 thickness=1);
  refline 'Ind Temp(C)' / axis=y discreteoffset=0.5 lineattrs=(color =Black pattern=dot thickness=1);
yaxistable pdp2_char sdORCI /class =Severity classdisplay =stack position=right location=outside
VALUEATTRS=(Color=Black Family=Arial Size=8  Weight=Normal ) VALUEHALIGN=CENTER VALUEJUSTIFY= CENTER CLASSORDER=reversedata   
COLORGROUP=Severity;
xaxis display=(nolabel) values=(0.4 1.0 1.5 2.0 2.5 5);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I have tried "keylegend" statements and the title disappears but I cant seem to get to right. Wanted to just move the title to the bottom of and outside the figure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using SAS studio. In SAS 9.4 desktop the image initially developed on SAS Studio did not come out the same so Im trying to finish this figure in Studio.&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 22:14:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/683471#M20463</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2020-09-12T22:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: proc sg plot. How to change the position and text of a title into a figure legend.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/683507#M20464</link>
      <description>&lt;P&gt;The title is controlled by the TITLE statement. To get rid of it, put&lt;/P&gt;
&lt;P&gt;TITLE;&lt;/P&gt;
&lt;P&gt;outside the PROC SGPLOT call and delete the TITLE statement inside the PROC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you mention the KEYLEGEND statement, perhaps you are also trying to suppress the legend? You can use the NOAUTOLEGEND option on the PROC SGPLOT statement to suppress the legend. So the new code looks like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Title;
proc sgplot data =HEERDT.VP_Table2b2  nowall noborder  NOAUTOLEGEND;
styleattrs ...
...
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that does not answer your question, perhaps you could attach a picture of the image you are getting and use graph-editing software to circle the feature you want to suppress or move.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Sep 2020 10:59:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/683507#M20464</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-09-13T10:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: proc sg plot. How to change the position and text of a title into a figure legend.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684173#M20472</link>
      <description>Thank you Rick. It’s great to be back again.&lt;BR /&gt;Your explanation was a good reminder, but I am also trying to place the contents of tte title and other annotations beneath the figure. The reviewers and editor wanted no title and just a note beneath the figure stating what it was, with explanations for some of the variables.</description>
      <pubDate>Wed, 16 Sep 2020 11:59:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684173#M20472</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2020-09-16T11:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: proc sg plot. How to change the position and text of a title into a figure legend.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684189#M20473</link>
      <description>&lt;P&gt;Can this information be added with a FOOTNOTE statement? By default, this text is added to the bottom of the graph and can be positioned using justification (left, right, center).&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2020 12:49:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684189#M20473</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-09-16T12:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: proc sg plot. How to change the position and text of a title into a figure legend.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684692#M20480</link>
      <description>&lt;P&gt;Thank you DanH. It worked.&lt;/P&gt;&lt;P&gt;Did not seen the footnote option. I generally go to this site for the options:&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1t32i8511t1gfn17sw07yxtazad.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1t32i8511t1gfn17sw07yxtazad.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;P&gt;I kept on trying with keylegend statement and others not knowing anything about footnote. Is there another source that gives us a comprehensive view of all the options?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Enclosed is a pdf of the output.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would really help if I could have the following term in bold "Supplementary Figure 1:"&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 16:25:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684692#M20480</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2020-09-17T16:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: proc sg plot. How to change the position and text of a title into a figure legend.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684710#M20481</link>
      <description>&lt;P&gt;You should be able to bold that part of the footnote. Can you post the FOOTNOTE statement you're using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the documentation, the TITLE and FOOTNOTE statements are global statement not tied directly to the SG procedures, but they are described in the "Overview" section of the SG procedure documentation:&amp;nbsp;&lt;A href="https://go.documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p0lf2nknrl1w4fn1k6uoewu0c76c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://go.documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p0lf2nknrl1w4fn1k6uoewu0c76c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 17:04:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/684710#M20481</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-09-17T17:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: proc sg plot. How to change the position and text of a title into a figure legend.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/685198#M20482</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;footnote box=1   justify= Left   "Supplementary Figure 1: OR (95% CI) for composite estimate of Severe Vasoplegia over 24h (shaded), and at sampled times up to 24 hours";&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 19 Sep 2020 15:54:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sg-plot-How-to-change-the-position-and-text-of-a-title-into/m-p/685198#M20482</guid>
      <dc:creator>ChristosK</dc:creator>
      <dc:date>2020-09-19T15:54:27Z</dc:date>
    </item>
  </channel>
</rss>

