I'm having trouble understanding the C-Index for proportional odds models. I've made an example where I increase the number of categories Y can take on. As the number of response categories increases, the C-index decreases. Since we know categorization reduces power I would have expected the C-index to increase. Can anyone explain why we see this behavior?
x <- rnorm(1000, 100, 10)
y <- x + rnorm(1000, 0, 10)
assign(paste0('y', i), y_temp)
assign(paste0('f', i), lrm(y_temp ~ x))
getStats <- function(stat){
c(f3$stats[stat], f4$stats[stat], f5$stats[stat], f6$stats[stat],
f7$stats[stat], f8$stats[stat], f9$stats[stat], f10$stats[stat])
plot(nquant, getStats('C'))