Get a new DMatrix containing the specified rows of original xgb.DMatrix object.
Usage
xgb.slice.DMatrix(object, idxset, allow_groups = FALSE)
# S3 method for class 'xgb.DMatrix'
object[idxset, colset = NULL]
Arguments
- object
Object of class
xgb.DMatrix
.- idxset
An integer vector of indices of rows needed (base-1 indexing).
- allow_groups
Whether to allow slicing an
xgb.DMatrix
withgroup
(or equivalentlyqid
) field. Note that in such case, the result will not have the groups anymore - they need to be set manually throughsetinfo()
.- colset
Currently not used (columns subsetting is not available).