chunk-methods {rebmix} | R Documentation |
Extracts Chunk from Train and Test Datasets
Description
Returns (invisibly) the object containing train and test observations as well as true class membership
for the test dataset. Vectors
are subvectors of
.
Usage
## S4 method for signature 'RCLS.chunk'
chunk(x = NULL, variables = expression(1:d))
## ... and for other signatures
Arguments
x |
see Methods section below. |
variables |
a vector containing indices of variables in subvectors |
Value
Returns an object of class RCLS.chunk
.
Methods
signature(x = "RCLS.chunk")
an object of class
RCLS.chunk
.
Author(s)
Marko Nagode
Examples
data(iris)
# Split dataset into train (75%) and test (25%) subsets.
set.seed(5)
Iris <- split(p = 0.75, Dataset = iris, class = 5)
# Extract chunk from train and test datasets.
Iris14 <- chunk(x = Iris, variables = c(1,4))
Iris14
[Package rebmix version 2.16.0 Index]