Extract the cutoffs used in the trained xgboost model
Usage
getXGboostCut(model, full = F, treeIndex = NULL)
Arguments
- model
output xgboost model from `buildXGboost()`
- full
logical, whether to report the most frequent cutoff for each feautres or all the cutoffs (default: False)
- treeIndex
number, examine cutoffs from a particular tree
Value
dataframe that contains the cutoffs used by the xgboost model for each feature
Examples
if (FALSE) { # \dontrun{
getXGboostCut(xgb)
} # }