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.
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..
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;
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;
Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.
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.
Ready to level-up your skills? Choose your own adventure.