search for: attrition_data_2

Displaying 1 result from an estimated 1 matches for "attrition_data_2".

Did you mean: attrition_data
2012 Jun 12
0
How to create lift chart and ROC curve in R
...me. I am trying to use package ROCR The indicative code for this is : newlogit3<- glm(Attrition_ind ~ Time.in.AXP+ Age +as.factor(Increase.in.Rating.in.Current.year) +as.factor(Below.Market.Merit.Budget)+as.factor(Drop.in.AIA) ,family=binomial(link="logit"),data=Attrition_data_2) summary(newlogit3) to predict I have a have used the code Test_data_1011 <- read.csv(file="TEST DATA_10_11.csv", header = TRUE, sep = ",", row.names = "employee_id", stringsAsFactors = TRUE) pred3 = predict(newlogit3,Test_data_1011 ,type = "response") Wa...