if (FALSE) {
gbt(titanic, "survived", c("pclass", "sex"), lev = "Yes") %>% summary()
gbt(titanic, "survived", c("pclass", "sex")) %>% str()
}
gbt(
titanic, "survived", c("pclass", "sex"), lev = "Yes",
early_stopping_rounds = 0, nthread = 1
) %>% summary()
gbt(
titanic, "survived", c("pclass", "sex"),
early_stopping_rounds = 0, nthread = 1
) %>% str()
gbt(
titanic, "survived", c("pclass", "sex"),
eval_metric = paste0("error@", 0.5 / 6), nthread = 1
) %>% str()
gbt(
diamonds, "price", c("carat", "clarity"), type = "regression", nthread = 1
) %>% summary()
Run the code above in your browser using DataLab