I have created a Logistic regression model and used it to predict attendance:
LogModel <- glm(formula = Attended ~ City + Duration,
family = binomial(logit), data = MyData)
prediction <- predict(LogModel, MyData, type = "response")
What should be the arguments I use in the brierscore()
function in order to obtain the brier score?