<?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: PROC LIFETEST - WARNING in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95668#M4784</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to the SAS support I've found the solution. The code works adding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions device=ZPNG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Aug 2012 13:07:26 GMT</pubDate>
    <dc:creator>L_L</dc:creator>
    <dc:date>2012-08-17T13:07:26Z</dc:date>
    <item>
      <title>PROC LIFETEST - WARNING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95665#M4781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using PROC LIFETEST to create a Kaplan Meier curve.&lt;/P&gt;&lt;P&gt;Example of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style=": ; color: #333333; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;nocenter nodate number&amp;nbsp; linesize=&lt;STRONG&gt;95&lt;/STRONG&gt; topmargin="2 cm" bottommargin="2 cm"&amp;nbsp; papersize=A4;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #333333; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;rtf file= 'c:\Survival.rtf' ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;PROC LIFETEST data=ds_input plots=(s) noprint;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TIME time_obs*event(0);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;STRATA var1/test=(logrank wilcoxon);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SYMBOL1 v=none color=red;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SYMBOL2 v=none color=blue;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AXIS1 label=(angle=90 'Survival function');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RUN;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;In the code log&amp;nbsp; there's the following warning message:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000;"&gt;WARNING: The specified/default value of VSIZE of 5.0000 inches and VORIGIN of 0.0000 inches exceeds the maximum for&amp;nbsp; the PNG printer. VSIZE is changed to 3.4167 inches.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see the Kaplan Meier curve in the output but not in the rtf file.&lt;/P&gt;&lt;P&gt;Could anyone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 13:32:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95665#M4781</guid>
      <dc:creator>L_L</dc:creator>
      <dc:date>2012-08-16T13:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: PROC LIFETEST - WARNING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95666#M4782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did your first two lines get cut off?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options nocenter nodate number ....; Missing the options keyword&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;ODS RTF File= '...' ; Mising the ODS keyword?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, since you're doing ODS you need ODS GRAPHICS ON; to be above your code somewhere as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 15:46:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95666#M4782</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-08-16T15:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: PROC LIFETEST - WARNING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95667#M4783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;..Yes, sorry I didn't copy &lt;STRONG&gt;option &lt;/STRONG&gt;nocenter... and &lt;STRONG&gt;ods &lt;/STRONG&gt;rtf..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the code I run it's correct (ODS Graphics on is not required since the NOPRINT option is specified), but I can't understand the WARNING message..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 19:20:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95667#M4783</guid>
      <dc:creator>L_L</dc:creator>
      <dc:date>2012-08-16T19:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: PROC LIFETEST - WARNING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95668#M4784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to the SAS support I've found the solution. The code works adding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions device=ZPNG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 13:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/95668#M4784</guid>
      <dc:creator>L_L</dc:creator>
      <dc:date>2012-08-17T13:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROC LIFETEST - WARNING [I use the gplot not lifetest]</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/270864#M14256</link>
      <description>&lt;P&gt;Hello there,&lt;BR /&gt;I get the same warning: "&lt;SPAN&gt;WARNING: &lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;The&lt;/SPAN&gt; &lt;SPAN class="lia-search-match-lithium"&gt;specified&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;default&lt;/SPAN&gt; &lt;SPAN class="lia-search-match-lithium"&gt;value&lt;/SPAN&gt;&lt;SPAN&gt; of VSIZE of 8.0000 inches and VORIGIN of 0.0000 inches &lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;exceeds&lt;/SPAN&gt; &lt;SPAN class="lia-search-match-lithium"&gt;the&lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;maximum&lt;/SPAN&gt; &lt;SPAN class="lia-search-match-lithium"&gt;for&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="lia-search-match-lithium"&gt;the&lt;/SPAN&gt; &lt;SPAN class="lia-search-match-lithium"&gt;PNG&lt;/SPAN&gt; &lt;SPAN class="lia-search-match-lithium"&gt;printer&lt;/SPAN&gt;&lt;SPAN&gt;. VSIZE is changed to 6.638 inches.". But I use GPLOT to do create the graph in HTML file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;and I use SAS 9.4. The ZPNG is disabled here. Can you please suggest me any other solution. It will be great if you could please explain why this warning comes up. Thank you in advance&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2016 02:50:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-LIFETEST-WARNING/m-p/270864#M14256</guid>
      <dc:creator>SASER</dc:creator>
      <dc:date>2016-05-17T02:50:56Z</dc:date>
    </item>
  </channel>
</rss>

