How can I convert logistics regression coefficients to SCORES?
I want to make a scorecard from that coefficients.
DF <- data.frame(
Column1 = c(0,0,0,0,0,1,1,1,1,1),
Column2 = c(1,1,1,0,0,0,1,1,1,0),
Column3 = c(1,1,1,0,0,0,0,0,0,0),
TARGET = c(1,1,1,0,0,0,0,0,1,0)
)
log_model = glm(TARGET~. , family = "binomial", data = DF)
question from:
https://stackoverflow.com/questions/65858387/convert-regresssion-coefficients-to-scores 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…