<?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 X axis tick marks in lifetest. in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235162#M12424</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I'm capturing the output of proc lifetest through ods. &amp;nbsp;I need to customize the tick interval on a survival plot for the x axis such that the ticks have values of 0 to 18 by intervals of 1.5.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The lifetest procedure code is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/*** Compute Kaplan Meier Statistics ***/&lt;BR /&gt;&lt;SPAN&gt;ods rtf file = "(directory path)&lt;/SPAN&gt;&lt;SPAN&gt;\&lt;/SPAN&gt;&lt;SPAN&gt;figures\f4_1.rtf"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;style=rtf;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ods graphics on;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proc lifetest data = km1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;timelist=0 1.5 3 4.5 6 7.5 9 10.5 12 13.5 15 16.5 18&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;plots = survival(atrisk=0 1.5 3 4.5 6 7.5 9 10.5 12 13.5 15 16.5 18)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;time months * event(0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;id usubjid;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;strata TRT01PN;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;title "Kaplan-Meier plot of PFS based on central review - Figure 4.1";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods graphics off;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods listing;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The at-risk table reports at the proper intervals but the ticks on the plot have intervals of 5 instead of 1.5. How do I make the ticks occur at 1.5 intervals?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Nov 2015 00:24:06 GMT</pubDate>
    <dc:creator>bentleyousley</dc:creator>
    <dc:date>2015-11-18T00:24:06Z</dc:date>
    <item>
      <title>X axis tick marks in lifetest.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235162#M12424</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I'm capturing the output of proc lifetest through ods. &amp;nbsp;I need to customize the tick interval on a survival plot for the x axis such that the ticks have values of 0 to 18 by intervals of 1.5.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The lifetest procedure code is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/*** Compute Kaplan Meier Statistics ***/&lt;BR /&gt;&lt;SPAN&gt;ods rtf file = "(directory path)&lt;/SPAN&gt;&lt;SPAN&gt;\&lt;/SPAN&gt;&lt;SPAN&gt;figures\f4_1.rtf"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;style=rtf;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ods graphics on;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proc lifetest data = km1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;timelist=0 1.5 3 4.5 6 7.5 9 10.5 12 13.5 15 16.5 18&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;plots = survival(atrisk=0 1.5 3 4.5 6 7.5 9 10.5 12 13.5 15 16.5 18)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;time months * event(0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;id usubjid;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;strata TRT01PN;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;title "Kaplan-Meier plot of PFS based on central review - Figure 4.1";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods graphics off;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ods listing;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The at-risk table reports at the proper intervals but the ticks on the plot have intervals of 5 instead of 1.5. How do I make the ticks occur at 1.5 intervals?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 00:24:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235162#M12424</guid>
      <dc:creator>bentleyousley</dc:creator>
      <dc:date>2015-11-18T00:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: X axis tick marks in lifetest.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235163#M12425</link>
      <description>&lt;P&gt;Try the intervals option in proc lifetest&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file = "(directory path)\figures\f4_1.rtf"
style=rtf;

ods graphics on;
proc lifetest data = km1 intervals=(0 to 18 by 1.5)
timelist=0 1.5 3 4.5 6 7.5 9 10.5 12 13.5 15 16.5 18
plots = survival(atrisk=0 1.5 3 4.5 6 7.5 9 10.5 12 13.5 15 16.5 18)
;
time months * event(0);
id usubjid;
strata TRT01PN;
title "Kaplan-Meier plot of PFS based on central review - Figure 4.1";
run;
ods graphics off;
ods listing;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 00:29:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235163#M12425</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2015-11-18T00:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: X axis tick marks in lifetest.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235164#M12426</link>
      <description>&lt;P&gt;Thank you for responding. I tried your suggestion but the x axis still shows intervals of 5 instead of 1.5.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 01:18:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235164#M12426</guid>
      <dc:creator>bentleyousley</dc:creator>
      <dc:date>2015-11-18T01:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: X axis tick marks in lifetest.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235165#M12427</link>
      <description>it is strange i thought it will work. Could you please comment the timelist and try once.</description>
      <pubDate>Wed, 18 Nov 2015 01:26:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235165#M12427</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2015-11-18T01:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: X axis tick marks in lifetest.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235171#M12430</link>
      <description>&lt;P&gt;Thank you for responding. I completely removed the timelist from the code. I'm still seeing the same interval of 5.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 02:54:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/X-axis-tick-marks-in-lifetest/m-p/235171#M12430</guid>
      <dc:creator>bentleyousley</dc:creator>
      <dc:date>2015-11-18T02:54:43Z</dc:date>
    </item>
  </channel>
</rss>

