Description Usage Arguments Value Examples
Checking Concordance.
| 1 | concordance(df, target, probability)
 | 
| df | dataframe which target and variable present. | 
| target | Target variable. | 
| probability | Predicted probabilities. | 
Concordance outputs
| 1 2 3 4 5 6 | data("CTDF")
mylogit<-glm(TARGET~HOLDING_PERIOD+NO_OF_L_CR_TXNS+AGE_BKT,data=CTDF,family = "binomial")
summary(mylogit)
vif(mylogit)
CTDF$prob<-predict.glm(mylogit,CTDF,type="response")
concordance(CTDF,"TARGET","prob")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.