Click or drag to resize

PFPGrowthAggregatePatterns Method

Aggregates the patterns.

Namespace: Ookii.Jumbo.Jet.Samples.FPGrowth
Assembly: Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public static void AggregatePatterns(
	RecordReader<Pair<int, WritableCollection<MappedFrequentPattern>>> input,
	RecordWriter<Pair<Utf8String, WritableCollection<FrequentPattern>>> output,
	TaskContext config
)

Parameters

input  RecordReaderPairInt32, WritableCollectionMappedFrequentPattern
The input.
output  RecordWriterPairUtf8String, WritableCollectionFrequentPattern
The output.
config  TaskContext
The config.
Remarks
Does not allow record reuse (technically it could because WritableCollection doesn't reuse item instances but because that might change in the future we don't set the option here).
See Also