Dear all,
I want to test difference in median between two groups – those with eventid=1 vs. 0
I googled and find this stata journal article, “Parameters behind "nonparametric" statistics: Kendall's tau, Somers' D and median differences”.
pretend data :
I tried
cendif Mdays, by(eventid )
but do not know if I am on the right track, and how to read the output.
Thanks,
Rochelle
I want to test difference in median between two groups – those with eventid=1 vs. 0
I googled and find this stata journal article, “Parameters behind "nonparametric" statistics: Kendall's tau, Somers' D and median differences”.
pretend data :
Code:
clear input double Mdays byte eventid 63.04238 1 72.77879 0 72.77879 0 72.77879 1 72.77879 0 68.61013 1 69.21858 1 end
cendif Mdays, by(eventid )
but do not know if I am on the right track, and how to read the output.
Thanks,
Rochelle
Comment