<?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 Help in my proc template pgm in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Help-in-my-proc-template-pgm/m-p/504405#M21893</link>
    <description>&lt;P&gt;Dear,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the output shown in the attachment, some of column values are truncated. How to modify my template code to avoid truncation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My value in call pgm is&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Prior treatment with same class of chemotherapy in the adjuvant or neoadjuvant setting (IVRS)"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The output shows "Prior treatment with same class of chemotherapy in the adjuvant or neoadjuvant setting (IVRS"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; %let colwgt=(0.56 0.08 0.04 0.10 0.22);    
   %let tickvaluelist=%str(0.1  1.0 10.0);

ODS PATH work.templat(update) sasuser.templat(read) sashelp.tmplmst(read);

proc template;
  define statgraph Forest_HighLow;
  dynamic  _color _headercolor;
    begingraph / designwidth=800px designheight=750px;
      layout lattice / columns=5 columnweights=&amp;amp;colwgt;

            /*--Column headers--*/
            sidebar / align=top;
                  layout lattice / rows=1 columns=5 columnweights=&amp;amp;colwgt
                         backgroundcolor=_headercolor opaque=true;
                  entry " ";
                  entry textattrs=(size=7.99 weight=bold) "&amp;amp;_test_label";
                  entry textattrs=(size=7.99 weight=bold) "&amp;amp;_clm_label";
                  entry textattrs=(size=7.99 weight=bold) "95% CI";
                  entry " ";
                  endlayout;
            endsidebar;

            /*--First column: subgroup label */
            layout overlay / walldisplay=none
                             xaxisopts=(display=none linearopts=(viewmin=0 viewmax=4))
                             yaxisopts=(reverse=true display=none tickvalueattrs=(weight=bold)) ;
                   highlowplot   y=rownum low=zero high=zero / highlabel=heading
                                 lineattrs=(thickness=0) labelattrs=(weight=bold size=7.99);
                   highlowplot   y=rownum low=zero high=one / highlabel=subgroup
                                 lineattrs=(thickness=0) labelattrs=(size=7.99);
            endlayout;

            /*--Second column: sample size --*/
            layout overlay / xaxisopts=(display=none) 
                   yaxisopts=(reverse=true display=none) walldisplay=none;
                   scatterplot y=rownum x=zero / markercharacter=n
                   markercharacterattrs=graphvaluetext(size=7.99);
            endlayout;

            /*--Third column: point estimate --*/
            layout overlay / xaxisopts=(display=none)
                   yaxisopts=(reverse=true display=none) walldisplay=none;
                   scatterplot y=rownum x=zero / markercharacter=hr
                   markercharacterattrs=graphvaluetext(size=7.99);
            endlayout;

            /*--Fourth column: CI --*/
            layout overlay / xaxisopts=(display=none)
                   yaxisopts=(reverse=true display=none) walldisplay=none;
                   scatterplot y=rownum x=zero / markercharacter=ci
                   markercharacterattrs=graphvaluetext(size=7.99);
            endlayout;

            /*--Fifth column: plot of point estimate and CI --*/
            **Added log scale **;
            layout overlay / xaxisopts=(type=log offsetmin=0.1 offsetmax=1 label="&amp;amp;_lgd_label" 
                      labelattrs=(size=7.99 weight=bold)
                      logopts=(base=10 tickintervalstyle=logexpand  
                                    %if &amp;amp;analdata eq adrs %then %do;
                      minorticks=false viewmin=40 viewmax=40))
                                    %end;
                                    %else %do;
                      minorticks=false viewmin=40 viewmax=40))
                                    %end;
                 yaxisopts=(reverse=true display=none) walldisplay=none;
                   highlowplot   y=rownum low=low high=high ;
                   scatterplot   y=rownum x=hrr /
                                 markerattrs=(symbol=squarefilled size=7.99);
                                 referenceline x=&amp;amp;ref_line_x_coor ;

      endlayout;
endlayout;
endgraph;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 15 Oct 2018 17:57:41 GMT</pubDate>
    <dc:creator>knveraraju91</dc:creator>
    <dc:date>2018-10-15T17:57:41Z</dc:date>
    <item>
      <title>Help in my proc template pgm</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Help-in-my-proc-template-pgm/m-p/504405#M21893</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the output shown in the attachment, some of column values are truncated. How to modify my template code to avoid truncation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My value in call pgm is&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Prior treatment with same class of chemotherapy in the adjuvant or neoadjuvant setting (IVRS)"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The output shows "Prior treatment with same class of chemotherapy in the adjuvant or neoadjuvant setting (IVRS"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; %let colwgt=(0.56 0.08 0.04 0.10 0.22);    
   %let tickvaluelist=%str(0.1  1.0 10.0);

ODS PATH work.templat(update) sasuser.templat(read) sashelp.tmplmst(read);

proc template;
  define statgraph Forest_HighLow;
  dynamic  _color _headercolor;
    begingraph / designwidth=800px designheight=750px;
      layout lattice / columns=5 columnweights=&amp;amp;colwgt;

            /*--Column headers--*/
            sidebar / align=top;
                  layout lattice / rows=1 columns=5 columnweights=&amp;amp;colwgt
                         backgroundcolor=_headercolor opaque=true;
                  entry " ";
                  entry textattrs=(size=7.99 weight=bold) "&amp;amp;_test_label";
                  entry textattrs=(size=7.99 weight=bold) "&amp;amp;_clm_label";
                  entry textattrs=(size=7.99 weight=bold) "95% CI";
                  entry " ";
                  endlayout;
            endsidebar;

            /*--First column: subgroup label */
            layout overlay / walldisplay=none
                             xaxisopts=(display=none linearopts=(viewmin=0 viewmax=4))
                             yaxisopts=(reverse=true display=none tickvalueattrs=(weight=bold)) ;
                   highlowplot   y=rownum low=zero high=zero / highlabel=heading
                                 lineattrs=(thickness=0) labelattrs=(weight=bold size=7.99);
                   highlowplot   y=rownum low=zero high=one / highlabel=subgroup
                                 lineattrs=(thickness=0) labelattrs=(size=7.99);
            endlayout;

            /*--Second column: sample size --*/
            layout overlay / xaxisopts=(display=none) 
                   yaxisopts=(reverse=true display=none) walldisplay=none;
                   scatterplot y=rownum x=zero / markercharacter=n
                   markercharacterattrs=graphvaluetext(size=7.99);
            endlayout;

            /*--Third column: point estimate --*/
            layout overlay / xaxisopts=(display=none)
                   yaxisopts=(reverse=true display=none) walldisplay=none;
                   scatterplot y=rownum x=zero / markercharacter=hr
                   markercharacterattrs=graphvaluetext(size=7.99);
            endlayout;

            /*--Fourth column: CI --*/
            layout overlay / xaxisopts=(display=none)
                   yaxisopts=(reverse=true display=none) walldisplay=none;
                   scatterplot y=rownum x=zero / markercharacter=ci
                   markercharacterattrs=graphvaluetext(size=7.99);
            endlayout;

            /*--Fifth column: plot of point estimate and CI --*/
            **Added log scale **;
            layout overlay / xaxisopts=(type=log offsetmin=0.1 offsetmax=1 label="&amp;amp;_lgd_label" 
                      labelattrs=(size=7.99 weight=bold)
                      logopts=(base=10 tickintervalstyle=logexpand  
                                    %if &amp;amp;analdata eq adrs %then %do;
                      minorticks=false viewmin=40 viewmax=40))
                                    %end;
                                    %else %do;
                      minorticks=false viewmin=40 viewmax=40))
                                    %end;
                 yaxisopts=(reverse=true display=none) walldisplay=none;
                   highlowplot   y=rownum low=low high=high ;
                   scatterplot   y=rownum x=hrr /
                                 markerattrs=(symbol=squarefilled size=7.99);
                                 referenceline x=&amp;amp;ref_line_x_coor ;

      endlayout;
endlayout;
endgraph;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Oct 2018 17:57:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Help-in-my-proc-template-pgm/m-p/504405#M21893</guid>
      <dc:creator>knveraraju91</dc:creator>
      <dc:date>2018-10-15T17:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help in my proc template pgm</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Help-in-my-proc-template-pgm/m-p/504417#M21894</link>
      <description>&lt;P&gt;I would use&amp;nbsp; AXISTABLE&amp;nbsp;as shown in this paper by one of the developers &lt;FONT size="3"&gt;Sanjay Matange. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2180-2018.pdf" target="_blank"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2180-2018.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is specific forest plot example.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 18:14:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Help-in-my-proc-template-pgm/m-p/504417#M21894</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-10-15T18:14:15Z</dc:date>
    </item>
  </channel>
</rss>

