Hi, I am trying to build a prediction model using 'xtgee', and I'm keen to model a sensitivity and specificity versus probability cutoff like what `lsens` did. However, I noted that `lsens` and `lroc` do not work after xtgee. Is there any similar options to obtain these plots?
Example dataset:
Thank you very much in advance
Example dataset:
Code:
sysuse bplong.dta, clear dataex gen outcome = round(runiform()) xtset patient when xtgee outcome sex, family(binomial) link(logit) corr(exch) vce(robust)
Comment