Dear all, i have created a logistic regression model, on the train df: mymodel1 <- glm(book_state ~ TG_KraftF5, data = train, family = "binomial")
then i try to predict with the test df Predict<- predict(mymodel1, newdata = test, type = "response") then iget this error message: Error in model.frame.default(Terms, newdata, na.action = na.action, xlev = object$xlevels) Factor "TG_KraftF5" has new levels i have tried different proposals from stackoverflow, but unfortunately they did not solved the problem. Do you have any idea how to test a logistic regression model when you have different levels in train and in test df? thank you in advance Regards, Gabor [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.