getinfo {gpboost}R Documentation

Get information of an gpb.Dataset object

Description

Get one attribute of a gpb.Dataset

Usage

getinfo(dataset, ...)

## S3 method for class 'gpb.Dataset'
getinfo(dataset, name, ...)

Arguments

dataset

Object of class gpb.Dataset

...

other parameters

name

the name of the information field to get (see details)

Details

The name field can be one of the following:

Value

info data

info data

Examples


data(agaricus.train, package = "gpboost")
train <- agaricus.train
dtrain <- gpb.Dataset(train$data, label = train$label)
gpb.Dataset.construct(dtrain)

labels <- gpboost::getinfo(dtrain, "label")
gpboost::setinfo(dtrain, "label", 1 - labels)

labels2 <- gpboost::getinfo(dtrain, "label")
stopifnot(all(labels2 == 1 - labels))


[Package gpboost version 1.4.0.1 Index]