Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在 R 中使用逻辑回归进行信用评分,但我对此感到困惑......
如果我有一个包含“Own”、“Rent”和“Other”因素的分类变量“Residence”,并且我想将“Other”的权重设置为零,以便它在模型中是中性的,那么最好的方法是在 R 中的 glm 中执行此操作?
我们可以使用 Fico Model Builder 手动执行此操作,但我不确定如何在 R 中执行此操作。
谢谢。
如果您想省略 Residence=="Other" 的情况,请使用子集参数glm()。
glm()
logmod <- glm(binaryvar ~ covar1 + Residence, data=dat, subset= Residence =="Other", family="binomial")