arules (version 1.6-6)

sample: Random Samples and Permutations

Description

Provides the generic function sample and the S4 method to take a sample of the specified size from the elements of x using either with or without replacement. sample can be used to sample from a set of transactions or associations.

Usage

sample(x, size, replace = FALSE, prob = NULL, ...)

Arguments

x

object to be sampled from (a set of associations or transactions).

size

sample size.

replace

a logical. Sample with replacement?

prob

a numeric vector of probability weights.

...

further arguments.

Value

An object of the same class as x.

See Also

associations-class, transactions-class, itemMatrix-class.

Examples

Run this code
# NOT RUN {
data("Adult")

## sample with replacement
s <- sample(Adult, 500, replace = TRUE)
s
# }

Run the code above in your browser using DataCamp Workspace