Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I have two continuous predictor variables to predict a dichotomous variable. In addition i have constructed two (interaction) models, based on domain knowledge which use both variables to predict the third.

So now i want to compare these predictors, using R. I get these result on the wilcox test: W = 36655, p-value = 3.896e-09 (single predictor) W = 29680.5, p-value < 2.2e-16 (model)

But i'm wondering if the area under the ROC curve would not be a good (better?) measure then the wilcox or the t-test. To get a general idea of how well the continuous predictor separates the two groups i plot the two histograms together. But the differences are small and besides, i'd like a 'grade' to tell me which is better and by how much.

share|improve this question
Do you mean the Wilcoxon rank-sum test? – Michael Chernick Aug 10 '12 at 16:36
@Michael Chernick Yes. But i could also use the t test as the sample is large enough. – Ivana Aug 11 '12 at 9:24

1 Answer

up vote 1 down vote accepted

While the t test and the the Wilcoxon tell you about the statistical significance of the covariate's parameter value, the ROC curve gives a different picture, telling you how well cases are classified as a threshold changes. So from the viewpoint of classification the AUC of the ROC might be more interesting for you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.