as_reducer {partition} | R Documentation |
Create a custom reducer
Description
Reducers are functions that tell the partition algorithm how
to reduce the data. as_reducer()
is a helper function to create new
reducers to be used in partitioner
s. partitioner
s can be created with
as_partitioner()
.
Usage
as_reducer(.f, ..., returns_vector = TRUE, first_match = NULL)
Arguments
.f |
a function that returns either a numeric vector or a |
... |
Extra arguments passed to |
returns_vector |
logical. Does |
first_match |
logical. Should the partition algorithm stop when it finds
a reduction that is equal to the threshold? Default is |
Value
a function to use in as_partitioner()
See Also
Other reducers:
reduce_first_component()
,
reduce_kmeans()
,
reduce_scaled_mean()
Other reducers:
reduce_first_component()
,
reduce_kmeans()
,
reduce_scaled_mean()
Examples
reduce_row_means <- as_reducer(rowMeans)
reduce_row_means