我正在研究显示网络中生成的票证的数据集。
我在此处附上了文件图片。
我正在尝试根据具体情况,组成和类别对影响进行逻辑回归。
这是我的代码
# Fitting Logistic Regression to the Training set
classifier = glm(Impact ~ ., family = binomial(link='logit'), data = train)
# Choosing the best model by AIC in a Stepwise Algorithm
# The step() function iteratively removes insignificant predictor variables from the model.
classifier <- step(classifier)
运行代码时,它将显示此错误
"glm.fit: fitted probabilities numerically 0 or 1 occurred"
请帮助我解决此错误。