Hello, I'd like to know more about the details how the MR method is implemented under double zero events. Below is the data and code. data test; input strat trt $ responder $ count; datalines; 1 Test Responder 4 1 Test NR 8 1 Pbo Responder 2 1 Pbo NR 11 2 Test Responder 0 2 Test NR 12 2 Pbo Responder 0 2 Pbo NR 13 ; run; proc freq data=test; weight count; tables strat*trt * responder/commonriskdiff(column=2 cl=MR correct=NO); run; I have tried to do some adjustment for the double zero count like adding 0.5 to the zero cells, adding 1 to the zero cells, adding 0.5 to each cell. It seems the results from SAS output are closest to the one when adding 0.5 to the zero cells. Is this how it's been implemented? Thank you.
... View more