<?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 output CIF plot with no events in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/output-CIF-plot-with-no-events/m-p/782934#M249600</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have data with no events. And I tried to output the Cumulative Incidence plot(CI plot). Since there are no events it's giving me an error and I cannot force the lifetest procedure to output a plot with no events.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="S_RAVI_0-1638200303266.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66209i9EDBFD72BCE6A7C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="S_RAVI_0-1638200303266.png" alt="S_RAVI_0-1638200303266.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So I tried creating a dummy data for events and month variable like below.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data test2;
	set rm;
	if rm_event = 0 then do;
		rm_event = 1;
		rm_mon = 7;
		output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am not getting the results. Please let me know if there is any other method to do so..&lt;/P&gt;</description>
    <pubDate>Mon, 29 Nov 2021 15:43:32 GMT</pubDate>
    <dc:creator>RAVI2000</dc:creator>
    <dc:date>2021-11-29T15:43:32Z</dc:date>
    <item>
      <title>output CIF plot with no events</title>
      <link>https://communities.sas.com/t5/SAS-Programming/output-CIF-plot-with-no-events/m-p/782934#M249600</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have data with no events. And I tried to output the Cumulative Incidence plot(CI plot). Since there are no events it's giving me an error and I cannot force the lifetest procedure to output a plot with no events.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="S_RAVI_0-1638200303266.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66209i9EDBFD72BCE6A7C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="S_RAVI_0-1638200303266.png" alt="S_RAVI_0-1638200303266.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So I tried creating a dummy data for events and month variable like below.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data test2;
	set rm;
	if rm_event = 0 then do;
		rm_event = 1;
		rm_mon = 7;
		output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am not getting the results. Please let me know if there is any other method to do so..&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 15:43:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/output-CIF-plot-with-no-events/m-p/782934#M249600</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2021-11-29T15:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: output CIF plot with no events</title>
      <link>https://communities.sas.com/t5/SAS-Programming/output-CIF-plot-with-no-events/m-p/783533#M249850</link>
      <description>&lt;P&gt;Your syntax removes records that don't match the test.&lt;/P&gt;
&lt;P&gt;Maybe you want this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test2;
	set rm;
	if rm_event = 0 then do;
		rm_event = 1;
		rm_mon = 7;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 04:05:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/output-CIF-plot-with-no-events/m-p/783533#M249850</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-12-02T04:05:45Z</dc:date>
    </item>
  </channel>
</rss>

