<?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 remove some graphics headers in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24978#M4162</link>
    <description>Hello dears SAS users.&lt;BR /&gt;
my problem is the following, when i submit this code&lt;BR /&gt;
&lt;BR /&gt;
ods html path = "C:\test1"&lt;BR /&gt;
        gpath= "C:\test1"&lt;BR /&gt;
         file  = "test_graph2.htm";&lt;BR /&gt;
ods select   Univar;&lt;BR /&gt;
   title j=c "QQplot mat ";&lt;BR /&gt;
proc univariate data=sashelp.class ;&lt;BR /&gt;
  class sex  ;&lt;BR /&gt;
  var weight;&lt;BR /&gt;
  qqplot / normal(mu=est sigma=est) ncol=2 vaxislabel =" ";&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
&lt;BR /&gt;
but in my HTML output there is always before the graphics of qqplot&lt;BR /&gt;
the univariate procedure ( i can remove that with ods noproctitle)&lt;BR /&gt;
but after it's written &lt;BR /&gt;
Variable: Weight&lt;BR /&gt;
Sex = M&lt;BR /&gt;
how can i do to remove this ?&lt;BR /&gt;
I'm still seeking but i don't find anything for the moment !!&lt;BR /&gt;
should you help me ?&lt;BR /&gt;
Thank you</description>
    <pubDate>Wed, 29 Apr 2009 11:55:24 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-04-29T11:55:24Z</dc:date>
    <item>
      <title>remove some graphics headers</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24978#M4162</link>
      <description>Hello dears SAS users.&lt;BR /&gt;
my problem is the following, when i submit this code&lt;BR /&gt;
&lt;BR /&gt;
ods html path = "C:\test1"&lt;BR /&gt;
        gpath= "C:\test1"&lt;BR /&gt;
         file  = "test_graph2.htm";&lt;BR /&gt;
ods select   Univar;&lt;BR /&gt;
   title j=c "QQplot mat ";&lt;BR /&gt;
proc univariate data=sashelp.class ;&lt;BR /&gt;
  class sex  ;&lt;BR /&gt;
  var weight;&lt;BR /&gt;
  qqplot / normal(mu=est sigma=est) ncol=2 vaxislabel =" ";&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
&lt;BR /&gt;
but in my HTML output there is always before the graphics of qqplot&lt;BR /&gt;
the univariate procedure ( i can remove that with ods noproctitle)&lt;BR /&gt;
but after it's written &lt;BR /&gt;
Variable: Weight&lt;BR /&gt;
Sex = M&lt;BR /&gt;
how can i do to remove this ?&lt;BR /&gt;
I'm still seeking but i don't find anything for the moment !!&lt;BR /&gt;
should you help me ?&lt;BR /&gt;
Thank you</description>
      <pubDate>Wed, 29 Apr 2009 11:55:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24978#M4162</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-04-29T11:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: remove some graphics headers</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24979#M4163</link>
      <description>PROC DOCUMENT can do what you want.  The following works in SAS 9.2.  I believe it works in SAS 9.1 also.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods document name=doc(write);&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods select Univar;&lt;BR /&gt;
title j=c "QQplot mat ";&lt;BR /&gt;
proc univariate data=sashelp.class ;&lt;BR /&gt;
class sex ;&lt;BR /&gt;
var weight;&lt;BR /&gt;
qqplot / normal(mu=est sigma=est) ncol=2 vaxislabel =" ";&lt;BR /&gt;
run;&lt;BR /&gt;
ods document close;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
proc document name=doc; &lt;BR /&gt;
list/levels=all;run;&lt;BR /&gt;
obstitle univariate\weight\qqplot\univar;run;&lt;BR /&gt;
ods html file="test.html";&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
replay;run;quit;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
The DOCUMENT OBSTITLE command deletes the subtitles (aka proc titles) associated with graph output object univar.&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
      <pubDate>Wed, 29 Apr 2009 14:00:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24979#M4163</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2009-04-29T14:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: remove some graphics headers</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24980#M4164</link>
      <description>Thank you for your answer but may be there is a more general option to remove this lines of information before the graphics output ?&lt;BR /&gt;
like ods noproctitle to remove information about the procedure which is used.</description>
      <pubDate>Thu, 30 Apr 2009 09:00:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24980#M4164</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-04-30T09:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: remove some graphics headers</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24981#M4165</link>
      <description>No, there is no other way within ODS to remove output object subtitles.&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
      <pubDate>Thu, 30 Apr 2009 13:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/remove-some-graphics-headers/m-p/24981#M4165</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2009-04-30T13:04:35Z</dc:date>
    </item>
  </channel>
</rss>

