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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.