partition (version 0.1.0)

replace_partitioner: Replace the director, metric, or reducer for a partitioner

Description

Replace the director, metric, or reducer for a partitioner

Usage

replace_partitioner(partitioner, direct = NULL, measure = NULL,
  reduce = NULL)

Arguments

partitioner

a partitioner

direct

a function that directs, possibly created by as_director()

measure

a function that measures, possibly created by as_measure()

reduce

a function that reduces, possibly created by as_reducer()

Value

a partitioner

See Also

Other partitioners: as_partitioner, part_icc, part_kmeans, part_minr2, part_pc1, part_stdmi

Examples

Run this code
# NOT RUN {
replace_partitioner(
  part_icc,
  reduce = as_reducer(rowMeans)
)

# }

Run the code above in your browser using DataLab