<?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: remove some headers in qq plot from proc univariate in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-headers-in-qq-plot-from-proc-univariate/m-p/76151#M8626</link>
    <description>Hi:&lt;BR /&gt;
  I'm not exactly sure how UNIVARIATE manages it, but it seems that the "Variable: xxxxx"  information is being sent by PROC UNIVARIATE as though it were a procedure title. As you observe from your code, however, using ODS NOPROCTITLE does not suppress this string.&lt;BR /&gt;
 &lt;BR /&gt;
   You can "disappear" the "Variable: xxxxx" string by turning the foreground and background color to be the same value -- in the code below, I'm changing them both to white so they disappear against the RTF page, when the RTF file is opened in Microsoft Word.&lt;BR /&gt;
&lt;BR /&gt;
    I thought there might be a table (or graph) template method to get rid of the string, but I could not find it. Perhaps one of the ODS developers will have a better idea of how to approach this task.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]            &lt;BR /&gt;
proc sort data=sashelp.class out=class;&lt;BR /&gt;
  by sex;&lt;BR /&gt;
run;&lt;BR /&gt;
                           &lt;BR /&gt;
ods path work.temp(update) sashelp.tmplmst(read);&lt;BR /&gt;
                          &lt;BR /&gt;
proc template;&lt;BR /&gt;
  define style styles.nopt;&lt;BR /&gt;
    parent=styles.rtf;&lt;BR /&gt;
    class ProcTitle /&lt;BR /&gt;
       background=white&lt;BR /&gt;
       foreground=white;&lt;BR /&gt;
  end;&lt;BR /&gt;
run;&lt;BR /&gt;
                 &lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods noproctitle;&lt;BR /&gt;
ods rtf file="c:\temp\qqplotf.rtf" style=styles.nopt;&lt;BR /&gt;
  ods graphics on;&lt;BR /&gt;
  ods select qqplot;&lt;BR /&gt;
  proc univariate data=class; &lt;BR /&gt;
    var weight;&lt;BR /&gt;
    by sex;&lt;BR /&gt;
    qqplot / normal(mu=est sigma=est);&lt;BR /&gt;
  run;&lt;BR /&gt;
               &lt;BR /&gt;
  ods graphics off;&lt;BR /&gt;
                         &lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
    <pubDate>Mon, 19 Oct 2009 23:03:22 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2009-10-19T23:03:22Z</dc:date>
    <item>
      <title>remove some headers in qq plot from proc univariate</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-headers-in-qq-plot-from-proc-univariate/m-p/76150#M8625</link>
      <description>Hello dears SAS users&lt;BR /&gt;
I have the following problem&lt;BR /&gt;
when i ran this code:&lt;BR /&gt;
proc sort data=sashelp.class out=class;&lt;BR /&gt;
  by sex;&lt;BR /&gt;
run;&lt;BR /&gt;
ods noproctitle;&lt;BR /&gt;
ods rtf file="G:\Assens\prog_autres\forum_sas\qqplot.rtf";&lt;BR /&gt;
ods graphics on;&lt;BR /&gt;
ods select qqplot;&lt;BR /&gt;
&lt;BR /&gt;
proc univariate data=class; &lt;BR /&gt;
  var weight;&lt;BR /&gt;
  by sex;&lt;BR /&gt;
  qqplot / normal(mu=est sigma=est);&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods graphics off;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
&lt;BR /&gt;
There is written before my qq plot,&lt;BR /&gt;
Variable:  Weight&lt;BR /&gt;
How can i do to remove it ?&lt;BR /&gt;
Is there a general options to remove this ?&lt;BR /&gt;
Thank you.</description>
      <pubDate>Mon, 19 Oct 2009 14:41:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-headers-in-qq-plot-from-proc-univariate/m-p/76150#M8625</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-10-19T14:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: remove some headers in qq plot from proc univariate</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-headers-in-qq-plot-from-proc-univariate/m-p/76151#M8626</link>
      <description>Hi:&lt;BR /&gt;
  I'm not exactly sure how UNIVARIATE manages it, but it seems that the "Variable: xxxxx"  information is being sent by PROC UNIVARIATE as though it were a procedure title. As you observe from your code, however, using ODS NOPROCTITLE does not suppress this string.&lt;BR /&gt;
 &lt;BR /&gt;
   You can "disappear" the "Variable: xxxxx" string by turning the foreground and background color to be the same value -- in the code below, I'm changing them both to white so they disappear against the RTF page, when the RTF file is opened in Microsoft Word.&lt;BR /&gt;
&lt;BR /&gt;
    I thought there might be a table (or graph) template method to get rid of the string, but I could not find it. Perhaps one of the ODS developers will have a better idea of how to approach this task.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]            &lt;BR /&gt;
proc sort data=sashelp.class out=class;&lt;BR /&gt;
  by sex;&lt;BR /&gt;
run;&lt;BR /&gt;
                           &lt;BR /&gt;
ods path work.temp(update) sashelp.tmplmst(read);&lt;BR /&gt;
                          &lt;BR /&gt;
proc template;&lt;BR /&gt;
  define style styles.nopt;&lt;BR /&gt;
    parent=styles.rtf;&lt;BR /&gt;
    class ProcTitle /&lt;BR /&gt;
       background=white&lt;BR /&gt;
       foreground=white;&lt;BR /&gt;
  end;&lt;BR /&gt;
run;&lt;BR /&gt;
                 &lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods noproctitle;&lt;BR /&gt;
ods rtf file="c:\temp\qqplotf.rtf" style=styles.nopt;&lt;BR /&gt;
  ods graphics on;&lt;BR /&gt;
  ods select qqplot;&lt;BR /&gt;
  proc univariate data=class; &lt;BR /&gt;
    var weight;&lt;BR /&gt;
    by sex;&lt;BR /&gt;
    qqplot / normal(mu=est sigma=est);&lt;BR /&gt;
  run;&lt;BR /&gt;
               &lt;BR /&gt;
  ods graphics off;&lt;BR /&gt;
                         &lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 19 Oct 2009 23:03:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-headers-in-qq-plot-from-proc-univariate/m-p/76151#M8626</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-10-19T23:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: remove some headers in qq plot from proc univariate</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-headers-in-qq-plot-from-proc-univariate/m-p/76152#M8627</link>
      <description>Thank you</description>
      <pubDate>Tue, 20 Oct 2009 09:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-headers-in-qq-plot-from-proc-univariate/m-p/76152#M8627</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-10-20T09:02:39Z</dc:date>
    </item>
  </channel>
</rss>

