| sample | R Documentation |
Provides the generic function sample() and methods to sample from transactions and
associations.
## S4 method for signature 'itemMatrix'
sample(x, size, replace = FALSE, prob = NULL, ...)
## S4 method for signature 'associations'
sample(x, size, replace = FALSE, prob = NULL, ...)
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. |
An object of the same class as x.
Michael Hahsler
Other preprocessing:
discretize(),
hierarchy,
itemCoding,
merge()
Other associations functions:
abbreviate(),
associations-class,
c(),
duplicated(),
extract,
inspect(),
is.closed(),
is.generator(),
is.maximal(),
is.redundant(),
is.significant(),
is.superset(),
itemsets-class,
match(),
rules-class,
sets,
size(),
sort(),
unique()
Other itemMatrix and transactions functions:
abbreviate(),
c(),
crossTable(),
duplicated(),
extract,
hierarchy,
image(),
inspect(),
is.superset(),
itemFrequency(),
itemFrequencyPlot(),
itemMatrix-class,
match(),
merge(),
random.transactions(),
sets,
size(),
supportingTransactions(),
tidLists-class,
transactions-class,
unique()
data("Adult")
## sample with replacement
s <- sample(Adult, 500, replace = TRUE)
s
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.