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;

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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