BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
RAVI2000
Lapis Lazuli | Level 10

Hello everyone,

 

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. 

S_RAVI_0-1638200303266.png

So I tried creating a dummy data for events and month variable like below.


data test2;
	set rm;
	if rm_event = 0 then do;
		rm_event = 1;
		rm_mon = 7;
		output;
	end;
run;

I am not getting the results. Please let me know if there is any other method to do so..

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

Your syntax removes records that don't match the test.

Maybe you want this?

data test2;
	set rm;
	if rm_event = 0 then do;
		rm_event = 1;
		rm_mon = 7;
	end;
run;

 

View solution in original post

1 REPLY 1
ChrisNZ
Tourmaline | Level 20

Your syntax removes records that don't match the test.

Maybe you want this?

data test2;
	set rm;
	if rm_event = 0 then do;
		rm_event = 1;
		rm_mon = 7;
	end;
run;

 

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1116 views
  • 1 like
  • 2 in conversation