sample_random {daltoolbox}R Documentation

Sample Random

Description

The sample_random function in R is used to generate a random sample of specified size from a given data set.

Usage

sample_random()

Value

obj

Examples

#using random sampling
sample <- sample_random()
tt <- train_test(sample, iris)

# distribution of train
table(tt$train$Species)

# preparing dataset into four folds
folds <- k_fold(sample, iris, 4)

# distribution of folds
tbl <- NULL
for (f in folds) {
 tbl <- rbind(tbl, table(f$Species))
}
head(tbl)

[Package daltoolbox version 1.0.767 Index]