partition: Partition the data

View source: R/partition.R

partitionR Documentation

Partition the data

Description

Randomly partitions the data (primarly intended to split into "training" and "test" sets) according to the supplied probabilities.

Usage

partition(data, prob = c(0.7, 0.3), set.seed = NULL)

Arguments

data

an (n \times p) matrix or a data.frame.

prob

a numerical vector in [0, 1].

set.seed

a single value, interpreted as an integer, or NULL.

Value

a list which includes the data partitions.

Author(s)

Reza Mohammadi a.mohammadi@uva.nl and Kevin Burke kevin.burke@ul.ie

Examples

data(iris)

partition(data = iris, prob = c(0.7, 0.3))

liver documentation built on Oct. 28, 2024, 5:07 p.m.