<?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: Changing the title of a histogram (proc univariate) in SAS 9.3 ? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-in-SAS-9-3/m-p/234565#M14662</link>
    <description>&lt;P&gt;It seems that the ODSTITLE= option does not work in SAS 9.3 (TS1M1). In SAS 9.4 (TS1M2) it works fine. As an alternative you could try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.class;
histogram weight / showbins;
title 'Your own title';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Does this work in your SAS 9.3?&lt;/P&gt;</description>
    <pubDate>Fri, 13 Nov 2015 11:25:57 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2015-11-13T11:25:57Z</dc:date>
    <item>
      <title>Changing the title of a histogram (proc univariate) in SAS 9.3 ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-in-SAS-9-3/m-p/234553#M14659</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I'm trying to rename the histogram in proc univariate. &lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146540#M11442" target="_self"&gt;This thread posts&lt;/A&gt;&amp;nbsp;an answer that requires /odstitle, but I can't get it to work in SAS 9.3, what would be the alternative? &amp;nbsp;Is it that my SAS 9.3 is not up to date?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: Copyright (c) 2002-2010 by SAS Institute Inc., Cary, NC, USA.&lt;BR /&gt;NOTE: SAS (r) Proprietary Software 9.3 (TS1M1)&lt;BR /&gt; Licensed to&amp;nbsp;xxx&lt;BR /&gt;NOTE: This session is executing on the W32_7PRO platform.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods graphics on;&lt;BR /&gt;proc univariate data=sashelp.class noprint;&lt;BR /&gt;histogram weight/ odstitle = "Sample ODS output title";&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;--------&lt;BR /&gt; 22&lt;BR /&gt; 76&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, ANNOKEY, ANNOTATE, BARLABEL,&lt;BR /&gt; BARWIDTH, BETA, CAXIS, CBARLINE, CFILL, CFRAME, CFRAMESIDE, CFRAMETOP, CGRID,&lt;BR /&gt; CHREF, CLIPREF, CONTENTS, CPROP, CTEXT, CV, CVREF, DESCRIPTION, ENDPOINTS,&lt;BR /&gt; EXPONENTIAL, FONT, FRONTREF, GAMMA, GRID, GUMBEL, HANGING, HAXIS, HEIGHT, HMINOR,&lt;BR /&gt; HOFFSET, HREF, HREFLABELS, HREFLABPOS, IGAUSS, INFONT, INHEIGHT, INTERBAR,&lt;BR /&gt; INTERTILE, KERNEL, LGRID, LHREF, LOGNORMAL, LVREF, MAXNBIN, MAXSIGMAS, MIDPERCENTS,&lt;BR /&gt; MIDPOINTS, NAME, NCOL, NCOLS, NENDPOINTS, NMIDPOINTS, NOBARS, NOCHART,&lt;BR /&gt; NOCURVELEGEND, NOFRAME, NOHLABEL, NOLEGEND, NOPLOT, NORMAL, NOTABCONTENTS,&lt;BR /&gt; NOVLABEL, NOVTICK, NROW, NROWS, OUTHISTOGRAM, OUTKERNEL, PARETO, PFILL, POWER,&lt;BR /&gt; RAYLEIGH, RTINCLUDE, SB, SU, TILELEGLABEL, TURNVLABELS, VAXIS, VAXISLABEL, VMINOR,&lt;BR /&gt; VOFFSET, VREF, VREFLABELS, VREFLABPOS, VSCALE, WAXIS, WBARLINE, WEIBULL, WGRID.&lt;BR /&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;BR /&gt;4 run;&lt;/P&gt;
&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE UNIVARIATE used (Total process time):&lt;BR /&gt; real time 0.26 seconds&lt;BR /&gt; user cpu time 0.06 seconds&lt;BR /&gt; system cpu time 0.01 seconds&lt;BR /&gt; memory 2853.36k&lt;BR /&gt; OS Memory 8560.00k&lt;BR /&gt; Timestamp 2015-11-13 03 h 55&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 08:58:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-in-SAS-9-3/m-p/234553#M14659</guid>
      <dc:creator>morglum</dc:creator>
      <dc:date>2015-11-13T08:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram (proc univariate) in SAS 9.3 ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-in-SAS-9-3/m-p/234565#M14662</link>
      <description>&lt;P&gt;It seems that the ODSTITLE= option does not work in SAS 9.3 (TS1M1). In SAS 9.4 (TS1M2) it works fine. As an alternative you could try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.class;
histogram weight / showbins;
title 'Your own title';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Does this work in your SAS 9.3?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:25:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-in-SAS-9-3/m-p/234565#M14662</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2015-11-13T11:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram (proc univariate) in SAS 9.3 ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-in-SAS-9-3/m-p/234567#M14663</link>
      <description>&lt;P&gt;It does, that will do, thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:37:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-in-SAS-9-3/m-p/234567#M14663</guid>
      <dc:creator>morglum</dc:creator>
      <dc:date>2015-11-13T11:37:28Z</dc:date>
    </item>
  </channel>
</rss>

