<?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: How to Suppress Survival Tables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386295#M277185</link>
    <description>Thanks. I did, but I am still facing the issue of&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;even I am not using it. Any idea on how to turn this off, please?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
    <pubDate>Tue, 08 Aug 2017 15:14:49 GMT</pubDate>
    <dc:creator>altijani</dc:creator>
    <dc:date>2017-08-08T15:14:49Z</dc:date>
    <item>
      <title>How to Suppress Survival Tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386080#M277178</link>
      <description>&lt;P&gt;I am running the following code and I have the output I am looking for&amp;nbsp;(T&lt;SPAN class="proctitle"&gt;esting&amp;nbsp;Homogeneity&amp;nbsp;of&amp;nbsp;Survival&amp;nbsp;Curves&amp;nbsp;for&amp;nbsp;Days_Open&amp;nbsp;over&amp;nbsp;Strata&lt;/SPAN&gt;), and also 5 different survival output datasets. How can I suppress the production of these tables?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc lifetest data= work.Random_Sample plots=(s) notable ALPHA=0.05;
time Days*paid;
strata type;
run ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2017 16:54:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386080#M277178</guid>
      <dc:creator>altijani</dc:creator>
      <dc:date>2017-08-07T16:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress Survival Tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386083#M277179</link>
      <description>&lt;P&gt;Place an ODS EXCLUDE &amp;lt;tablenames go here&amp;gt;; immediately before the Proc statement or within the proc code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find the names of tables either looking in the documentation for the procedure or using&lt;/P&gt;
&lt;P&gt;ODS TRACE on;&lt;/P&gt;
&lt;P&gt;&amp;lt;your procedure code&amp;gt;&lt;/P&gt;
&lt;P&gt;ODS trace off;&lt;/P&gt;
&lt;P&gt;there will be a listing of the tables generated&amp;nbsp;in the log that you can then add to an ODS Exclude or Select as needed.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2017 17:01:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386083#M277179</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-07T17:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress Survival Tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386084#M277180</link>
      <description>&lt;PRE&gt;ods _all_ close;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Aug 2017 17:01:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386084#M277180</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-08-07T17:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress Survival Tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386248#M277183</link>
      <description>Hi PaigeMiller,&lt;BR /&gt;&lt;BR /&gt;Thanks for the code. It actually blocking my other graphs from coming and the tables are still there. Which code should I use to remove the code from above that you provided. It appears in all of my graph codes, and I need these graphs to show actually.&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 08 Aug 2017 13:20:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386248#M277183</guid>
      <dc:creator>altijani</dc:creator>
      <dc:date>2017-08-08T13:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress Survival Tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386289#M277184</link>
      <description>&lt;P&gt;Use ballardw's&amp;nbsp;method: ODS EXCLUDE ALL;&lt;/P&gt;
&lt;P&gt;For reasons why this method is preferable to closing ODS destinations, see&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2015/05/28/five-reasons-ods-exclude.html" target="_blank"&gt;http://blogs.sas.com/content/iml/2015/05/28/five-reasons-ods-exclude.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 14:51:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386289#M277184</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-08-08T14:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress Survival Tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386295#M277185</link>
      <description>Thanks. I did, but I am still facing the issue of&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;even I am not using it. Any idea on how to turn this off, please?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 08 Aug 2017 15:14:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386295#M277185</guid>
      <dc:creator>altijani</dc:creator>
      <dc:date>2017-08-08T15:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Suppress Survival Tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386298#M277186</link>
      <description>&lt;P&gt;The simplest solution is to exit SAS and restart. &amp;nbsp;If for some reason you don't want to do that, then reopen the destination that you want. For example:&lt;/P&gt;
&lt;P&gt;ODS HTML;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;ODS RTF;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 15:19:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Suppress-Survival-Tables/m-p/386298#M277186</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-08-08T15:19:20Z</dc:date>
    </item>
  </channel>
</rss>

