| xgb.slice.DMatrix | R Documentation |
Get a new DMatrix containing the specified rows of original xgb.DMatrix object.
xgb.slice.DMatrix(object, idxset, allow_groups = FALSE)
## S3 method for class 'xgb.DMatrix'
object[idxset, colset = NULL]
object |
Object of class |
idxset |
An integer vector of indices of rows needed (base-1 indexing). |
allow_groups |
Whether to allow slicing an |
colset |
Currently not used (columns subsetting is not available). |
data(agaricus.train, package = "xgboost")
dtrain <- with(agaricus.train, xgb.DMatrix(data, label = label, nthread = 2))
dsub <- xgb.slice.DMatrix(dtrain, 1:42)
labels1 <- getinfo(dsub, "label")
dsub <- dtrain[1:42, ]
labels2 <- getinfo(dsub, "label")
all.equal(labels1, labels2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.