dropTrainSetVars: Parameters dropping

dropTrainSetVarsR Documentation

Parameters dropping

Description

Drop some parameters (columns) in the training set.

Usage

dropTrainSetVars(dat, VarToDrop)

Arguments

dat

data.frame containing the features of each prototype associated to a class.

VarToDrop

character vector specifying variables to drop from the training set.

Details

dropTrainSetVars drops some parameters (columns) in the training set

Value

dat data.frame containing the kept features of each prototype associated to a class.

See Also

readTrainSet

Examples


rep <- system.file("extdata", package="RclusTool")
traindir <- file.path(rep, "train_example")

train <- readTrainSet(traindir)
train <- dropTrainSetVars(train, c("Id", "i..ID", "ArrivalTime", "X"))


RclusTool documentation built on Aug. 29, 2022, 9:07 a.m.