<?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 change  entrytitle inside model output in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/973842#M377751</link>
    <description>&lt;P&gt;I used proc mixed to produce Studentized Residuals with&amp;nbsp;model CHG =... CHG variable has label Change. But in output png file inner title (which placed in position, where usually template's entrytitle statement applied). So how I can change this entrytitle to Studentized Residuals for Change from Baseline?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimurShangareev_1-1756736728308.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109505i28F32E978BAE2B59/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TimurShangareev_1-1756736728308.png" alt="TimurShangareev_1-1756736728308.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Sep 2025 14:26:34 GMT</pubDate>
    <dc:creator>TimurShangareev</dc:creator>
    <dc:date>2025-09-01T14:26:34Z</dc:date>
    <item>
      <title>change  entrytitle inside model output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/973842#M377751</link>
      <description>&lt;P&gt;I used proc mixed to produce Studentized Residuals with&amp;nbsp;model CHG =... CHG variable has label Change. But in output png file inner title (which placed in position, where usually template's entrytitle statement applied). So how I can change this entrytitle to Studentized Residuals for Change from Baseline?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimurShangareev_1-1756736728308.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109505i28F32E978BAE2B59/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TimurShangareev_1-1756736728308.png" alt="TimurShangareev_1-1756736728308.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 14:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/973842#M377751</guid>
      <dc:creator>TimurShangareev</dc:creator>
      <dc:date>2025-09-01T14:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: change  entrytitle inside model output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/973849#M377756</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/409409"&gt;@TimurShangareev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Following&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_templt_sect032.htm" target="_blank" rel="noopener"&gt;Example 25.8 Changing Titles by Using the %GrTitle Macro&lt;/A&gt; from the SAS documentation I accomplished the change by inserting these two statements before the PROC MIXED step:&lt;/P&gt;
&lt;PRE&gt;%grtitle(path=Stat.Mixed.Graphics.ResidualPanel)
%let Mixed_ResidualPanel = Studentized Residuals for Change from Baseline;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By deleting the above macro variable using&lt;/P&gt;
&lt;PRE&gt;%symdel Mixed_ResidualPanel;&lt;/PRE&gt;
&lt;P&gt;you can revert to the default title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 15:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/973849#M377756</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-09-01T15:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: change  entrytitle inside model output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/973877#M377761</link>
      <description>&lt;P&gt;Can I set or customize proctitle for PROC SGRENDER/SGPLOT with this macro?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 09:24:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/973877#M377761</guid>
      <dc:creator>TimurShangareev</dc:creator>
      <dc:date>2025-09-02T09:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: change  entrytitle inside model output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/974010#M377781</link>
      <description>&lt;P&gt;1)Try this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;CODE EDITED&lt;/STRONG&gt;(try to make only one bookmarker).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods document name=testAW(write);
proc sgplot data=sashelp.class;
scatter x=weight y=height/group=sex datalabel=name;
run;
ods document close;

proc document name=testAW;
list/ levels=all; run;
quit;


proc document name=testAW2(write);
setlabel \work.testAW\SGPlot#1\SGPlot#1 "Can I set or customize proctitle for PROC SGRENDER/SGPLOT";
copy \work.testAW\SGPlot#1\SGPlot#1 to ^;
run;

list/ levels=all; run;
quit;

title;
proc document name=work.testAW2;
ods pdf file="c:\temp\twolevels.pdf"  startpage=no ; * Save this graphic into a PDF file named twolevels.pdf;
replay ;
run;
ods pdf close;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1756966554871.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109609i0532E6D6EFFEABAE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1756966554871.png" alt="Ksharp_0-1756966554871.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2)Or try this:&lt;/P&gt;
&lt;PRE&gt;ods pdf file='c:\temp\temp.pdf';
ods  proclabel='Can I set or customize proctitle for PROC SGRENDER/SGPLOT ';
proc sgplot data=sashelp.class;
scatter x=weight y=height/group=sex datalabel=name;
run;
ods pdf close;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 06:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/974010#M377781</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-09-04T06:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: change  entrytitle inside model output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/974015#M377782</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/409409"&gt;@TimurShangareev&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Can I set or customize proctitle for PROC SGRENDER/SGPLOT with this macro?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't think so. Use &lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408" target="_blank" rel="noopener"&gt;Ksharp&lt;/A&gt;'s suggestions for that purpose.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 09:01:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-entrytitle-inside-model-output/m-p/974015#M377782</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-09-03T09:01:57Z</dc:date>
    </item>
  </channel>
</rss>

