# Checking association b/w positive odds ratio and # Se/Sp odds ratio by weighted linear regression model a <- c(26,11,68,74,84,40,16,96,11,91,46,15,58,26) b <- c(4,1,3,12,20,3,1,20,2,5,9,1,10,4) c <- c(2,2,8,0+0.5,13,7,9,15,2,5,3,2,16,1) d <- c(83,5,34,111,99,41,109,206,57,57,42,93,121,74) cbind (a,c,b,d) (Se <- a/(a+c)) (Sp <- d/(b+d)) (x <- 1-Sp)...
» 続きを読む