% Generated by roxygen2: do not edit by hand % Please edit documentation in R/lgb.Dataset.R \name{dimnames.lgb.Dataset} \alias{dimnames.lgb.Dataset} \alias{dimnames<-.lgb.Dataset} \title{Handling of column names of \code{lgb.Dataset}} \usage{ \method{dimnames}{lgb.Dataset}(x) \method{dimnames}{lgb.Dataset}(x) <- value } \arguments{ \item{x}{object of class \code{lgb.Dataset}} \item{value}{a list of two elements: the first one is ignored and the second one is column names} } \value{ A list with the dimension names of the dataset } \description{ Only column names are supported for \code{lgb.Dataset}, thus setting of row names would have no effect and returned row names would be NULL. } \details{ Generic \code{dimnames} methods are used by \code{colnames}. Since row names are irrelevant, it is recommended to use \code{colnames} directly. } \examples{ \donttest{ \dontshow{setLGBMthreads(2L)} \dontshow{data.table::setDTthreads(1L)} data(agaricus.train, package = "lightgbm") train <- agaricus.train dtrain <- lgb.Dataset(train$data, label = train$label) lgb.Dataset.construct(dtrain) dimnames(dtrain) colnames(dtrain) colnames(dtrain) <- make.names(seq_len(ncol(train$data))) print(dtrain, verbose = TRUE) } }